コード例 #1
0
ファイル: GameBox.cs プロジェクト: nik0kin/ProjectTurtle
 internal void gotoBossSelect() {
     postFight = null;
     //gameState = GameState.bossSelect;
     gameState = GameState.menuScreen;
 }
コード例 #2
0
ファイル: GameBox.cs プロジェクト: nik0kin/ProjectTurtle
 internal void initPostFight(BossFightID id, double timeSecond, int playerAmt, DamageMeter damageMeter, bool win, int enrageTimer, Hashtable lastRaid) {
     inGame = null;
     //this.lastRaid = lastRaid;
     gameState = GameState.postFight;
     postFight = new PostFight(id, timeSecond, playerAmt, damageMeter, win, enrageTimer, lastRaid);
     BossSelect.updateTotalStars();
 }