示例#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;
 }