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 PvPController(InMemoryPlayerTable playerTable, InMemoryPvPTable pvPTable, InMemoryGamesTable gamesTable) { this.playerTable = playerTable; this.pvPTable = pvPTable; this.gameTable = gamesTable; }