Some checks reported errors
studiorailgun/Renderer/pipeline/head Something is wrong with the build of this commit
31 lines
644 B
Java
31 lines
644 B
Java
package electrosphere.client.entity.character;
|
|
|
|
/**
|
|
* Tracks the characers available to the client
|
|
*/
|
|
public class ClientCharacterManager {
|
|
|
|
/**
|
|
* The list of characters available
|
|
*/
|
|
ClientCharacterListDTO characterList;
|
|
|
|
/**
|
|
* Gets the character list
|
|
* @return The character list
|
|
*/
|
|
public ClientCharacterListDTO getCharacterList() {
|
|
return characterList;
|
|
}
|
|
|
|
/**
|
|
* Sets the character list
|
|
* @param characterList The character list
|
|
*/
|
|
public void setCharacterList(ClientCharacterListDTO characterList) {
|
|
this.characterList = characterList;
|
|
}
|
|
|
|
|
|
}
|