Example #1
0
 public void SaveWithCleared(DeathCounts deathCounts, CoinScore coinScore = null)
 {
     this.deathCounts = deathCounts;
     this.LastCleared = DateTime.Now;
     this.state       = StageState.cleared;
     this.coinScore   = coinScore;
 }
 /// <summary>
 /// 初期化
 /// </summary>
 /// <param name="stageID"></param>
 public void Init(int stageID)
 {
     this.DeathCounts = new DeathCounts(stageID);
 }