Exemple #1
0
 public BlueOct(MainStage game)
 {
     State = new BlueOctUpMovingState(this, game);
     GlobalDefinitions.BlueOctPosition = new Vector2(GlobalDefinitions.GraphicsWidth / 2, GlobalDefinitions.GraphicsHeight / 2);
     rand      = new Random();
     this.game = game;
 }
Exemple #2
0
 public Aquamentus(MainStage game)
 {
     State = new AquamentusLeftMovingState(this, game);
     GlobalDefinitions.AquamentusPosition = new Vector2(GlobalDefinitions.GraphicsWidth / 2, GlobalDefinitions.GraphicsHeight / 2);
     rand      = new Random();
     this.game = game;
 }
Exemple #3
0
 public RedGoriya(MainStage game)
 {
     State = new RedGoriyaUpMovingState(this, game);
     GlobalDefinitions.RedGoriyaPosition = new Vector2(GlobalDefinitions.GraphicsWidth / 2, GlobalDefinitions.GraphicsHeight / 2);
     rand      = new Random();
     this.game = game;
 }
Exemple #4
0
 public OldWoman()
 {
     State = new OldWomanState();
 }
Exemple #5
0
 public OldMan()
 {
     State = new OldManState();
 }
Exemple #6
0
 public MerchantG()
 {
     State = new MerchantGState();
 }
Exemple #7
0
 public MerchantR()
 {
     State = new MerchantRState();
 }
Exemple #8
0
 public MerchantP()
 {
     State = new MerchantPState();
 }