Renderer/src/main/java/electrosphere/client/entity/character/ClientCharacterManager.java
austin 080cdeca33
Some checks reported errors
studiorailgun/Renderer/pipeline/head Something is wrong with the build of this commit
character database work
2024-11-29 20:47:52 -05:00

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;
}
}