Финальные изменения в названиях.
This commit is contained in:
parent
0a9c05f7fa
commit
3aa10a0e4b
@ -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);
|
@ -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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -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();
|
Loading…
Reference in New Issue
Block a user