namespace ET.Client
{
    [ComponentOf(typeof(Scene))]
    public class PlayerComponent: Entity, IAwake, IDestroy
    {
        [StaticField]
        public static PlayerComponent Instance;

        public long PlayerId { get; set; }
    }
}