예제 #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;
 }