using System.Collections.Generic; using System.Linq; namespace ET { [ComponentOf(typeof(Scene))] [ChildType(typeof(Player))] public class PlayerComponent : Entity, IAwake, IDestroy { public readonly Dictionary idPlayers = new Dictionary(); } }