public ChartController(InMemoryPlayerTable inMemoryPlayerTable, InMemoryHighscoreTable inMemoryHighscoreTable, InMemoryGamesTable inMemoryGamesTable, InMemoryPvPTable inMemoryPvPTable) { this.hsTable = inMemoryHighscoreTable; this.pTable = inMemoryPlayerTable; this.gTable = inMemoryGamesTable; this.pvpTable = inMemoryPvPTable; }
public PvPController(InMemoryPlayerTable playerTable, InMemoryPvPTable pvPTable, InMemoryGamesTable gamesTable) { this.playerTable = playerTable; this.pvPTable = pvPTable; this.gameTable = gamesTable; }
public ScoreboardController(InMemoryHighscoreTable highscoreTable, InMemoryPlayerTable playerTable, InMemoryGamesTable gameTable) { this.highscoreTable = highscoreTable; this.playerTable = playerTable; this.gameTable = gameTable; }