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