Финальные изменения в названиях.

This commit is contained in:
Programmist73 2022-10-05 20:54:22 +04:00
parent 0a9c05f7fa
commit 3aa10a0e4b
3 changed files with 4 additions and 4 deletions

View File

@ -6,7 +6,7 @@ using System.Threading.Tasks;
namespace Airbus namespace Airbus
{ {
internal class SecondSimpleMap : AbstractMap internal class DesertStormMap : AbstractMap
{ {
//цвет закрытого участка //цвет закрытого участка
Brush barriedColor = new SolidBrush(Color.DarkRed); Brush barriedColor = new SolidBrush(Color.DarkRed);

View File

@ -84,10 +84,10 @@ namespace Airbus
_abstractMap = new SimpleMap(); _abstractMap = new SimpleMap();
break; break;
case "Буря в пустыне": case "Буря в пустыне":
_abstractMap = new SecondSimpleMap(); _abstractMap = new DesertStormMap();
break; break;
case "Звёздные войны": case "Звёздные войны":
_abstractMap = new ThirdSimpleMap(); _abstractMap = new StarWarsMap();
break; break;
} }
} }

View File

@ -6,7 +6,7 @@ using System.Threading.Tasks;
namespace Airbus namespace Airbus
{ {
internal class ThirdSimpleMap : AbstractMap internal class StarWarsMap : AbstractMap
{ {
Random rnd = new Random(); Random rnd = new Random();