コード例 #1
0
ファイル: Ending.cs プロジェクト: xcmel/FWPGame
 public CongratsState(Ending ending, SoundEffect effect, SpriteFont openingText)
 {
     this.ending = ending;
     this.ending.nextState = false;
     this.effect = effect;
     SetUpInput();
     this.openingTxt = openingText;
 }
コード例 #2
0
ファイル: Ending.cs プロジェクト: xcmel/FWPGame
 public EndingStateOver(Ending ending, SoundEffect effect, SpriteFont openingText)
 {
     this.ending = ending;
     ending.nextState = false;
     this.effect = effect;
     this.openingTxt = openingText;
 }