public HomeController(InMemoryHighscoreTable db, InMemoryLoginTable lg, InMemoryPvPTable plTable, InMemoryHighscoreTable hsTable, InMemoryPlayerTable playerTable) { this.db = db; this.lg = lg; this.hsTable = hsTable; this.plTable = plTable; this.playerTable = playerTable; }
public ChartController(InMemoryPlayerTable inMemoryPlayerTable, InMemoryHighscoreTable inMemoryHighscoreTable, InMemoryGamesTable inMemoryGamesTable, InMemoryPvPTable inMemoryPvPTable) { this.hsTable = inMemoryHighscoreTable; this.pTable = inMemoryPlayerTable; this.gTable = inMemoryGamesTable; this.pvpTable = inMemoryPvPTable; }
public ScoreboardController(InMemoryHighscoreTable highscoreTable, InMemoryPlayerTable playerTable, InMemoryGamesTable gameTable) { this.highscoreTable = highscoreTable; this.playerTable = playerTable; this.gameTable = gameTable; }