namespace ET.Client
{
    [ComponentOf(typeof(Scene))]
    public class PlayerComponent: Entity, IAwake, IDestroy
    {
        public long MyId { get; set; }

        [StaticField]
        public static PlayerComponent Instance;
    }
}