コード例 #1
0
 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;
 }
コード例 #2
0
 public ChartController(InMemoryPlayerTable inMemoryPlayerTable, InMemoryHighscoreTable inMemoryHighscoreTable,
                        InMemoryGamesTable inMemoryGamesTable, InMemoryPvPTable inMemoryPvPTable)
 {
     this.hsTable  = inMemoryHighscoreTable;
     this.pTable   = inMemoryPlayerTable;
     this.gTable   = inMemoryGamesTable;
     this.pvpTable = inMemoryPvPTable;
 }
コード例 #3
0
 public PvPController(InMemoryPlayerTable playerTable, InMemoryPvPTable pvPTable, InMemoryGamesTable gamesTable)
 {
     this.playerTable = playerTable;
     this.pvPTable    = pvPTable;
     this.gameTable   = gamesTable;
 }
コード例 #4
0
 public PlayerController(InMemoryPlayerTable playerTable)
 {
     this._playerTable = playerTable;
 }
コード例 #5
0
 public ScoreboardController(InMemoryHighscoreTable highscoreTable, InMemoryPlayerTable playerTable, InMemoryGamesTable gameTable)
 {
     this.highscoreTable = highscoreTable;
     this.playerTable    = playerTable;
     this.gameTable      = gameTable;
 }
コード例 #6
0
 public LoginController(InMemoryLoginTable loginTable, InMemoryPlayerTable playerTable)
 {
     this.loginTable  = loginTable;
     this.playerTable = playerTable;
 }