Пример #1
0
        public Player(Position position, Velocity velocity, String name, String password)
        {
            this.Position = position;
            this.Velocity = velocity;
            this.Name = name;

            this.Password = password.PadRight(128);
        }
Пример #2
0
        public void Player()
        {
            Player player = new Player();
            Assert.AreEqual<String>(player.Name, "NoName");
            Assert.AreEqual<Position>(player.Position, new Position());
            Assert.AreEqual<Velocity>(player.Velocity, new Velocity());

            Position pos = new Position(10.0f, 15.0f);
            Velocity vel = new Velocity(-1.0f, 4.0f);
            String name = "hello thar";
            String pass = "******";
            Player player2 = new Player(pos, vel, name, pass);
            Assert.AreEqual<String>(player2.Name, name);
            Assert.AreEqual<Position>(player2.Position, pos);
            Assert.AreEqual<Velocity>(player2.Velocity, vel);
        }
Пример #3
0
 public Player()
 {
     Position = new Position();
     Velocity = new Velocity();
     Name = "NoName";
 }
Пример #4
0
 public Player()
 {
     Position = new Position();
     Velocity = new Velocity();
     Name     = "NoName";
 }