com.microsoft.azure.gaming.ConnectedPlayer Maven / Gradle / Ivy
package com.microsoft.azure.gaming;
/**
 * Describes a player that is connected to the game server.
 */
public class ConnectedPlayer {
    private String playerId;
    public ConnectedPlayer(String newPlayerId){
        this.setPlayerId(newPlayerId);
    }
    public String getPlayerId() {
        return playerId;
    }
    public void setPlayerId(String playerId) {
        this.playerId = playerId;
    }
}
    © 2015 - 2025 Weber Informatics LLC | Privacy Policy