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