All Downloads are FREE. Search and download functionalities are using the official Maven repository.

eg.triviaGameExample.Player Maven / Gradle / Ivy

package eg.triviaGameExample;

public class Player {
  private String name;

  public Player(String aPlayerName) {
    name = aPlayerName;
  }

  public String getName() {
    return name;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy