Esempio n. 1
0
 public void SetMainGame(MainGame mG)
 {
     this.mG = mG;
 }
Esempio n. 2
0
 public MenuScene(MainGame mG) : base(mG)
 {
 }
Esempio n. 3
0
 public TileExit(Vector2 currentPosition, int width, int height, MainGame mG) : base(currentPosition, width, height)
 {
     CurrentPosition = currentPosition;
     traversable     = true;
     this.mG         = mG;
 }