Exemplo n.º 1
0
 public void Draw(SpriteBatch sb)
 {
     foreach (Bitmap layer in BackLayers)
     {
         sb.DrawBackground(layer);
     }
     foreach (Maptile m in Tiles)
     {
         m.Draw(sb);
     }
 }