Ejemplo n.º 1
0
 public Player(Vector3 color, User userInfo, Team team)
 {
     this.color = color;
     this.userInfo = userInfo;
     this.team = team;
 }
Ejemplo n.º 2
0
 public AssemblifyGameCenter()
 {
     localUser = new User("Test Player " + new Random().Next(0, 100));
     multiplayer = new GameClientMultiplayer(localUser);
 }
Ejemplo n.º 3
0
 public ClientPlayHandshakePacket(User user, string password)
 {
     this.user = user;
     this.password = password;
 }