Exemplo n.º 1
0
        public User(string name, GameWorld world)
        {
            this.id = ++counter;
            this.world = world;
            this.states = new StateCollection();
            this.input = new ConcurrentQueue<UserInput>();
            this.character = new Character(this);
            this.world.AddObject(this.character);
            this.score = new DInt(20);

            this.name = new DString(name);
            this.latency = new DShort(-1);
        }