Ejemplo n.º 1
0
 public void Draw(SpriteBatch spriteBatch)
 {
     UpperWall?.Draw(spriteBatch);
     LowerWall?.Draw(spriteBatch);
     LeftWall?.Draw(spriteBatch);
     RightWall?.Draw(spriteBatch);
 }
Ejemplo n.º 2
0
 public void Draw()
 {
     TopWall.Draw();
     BottomWall.Draw();
     LeftWall.Draw();
     RightWall.Draw();
     Terrain.Draw();
 }