Eliseev E.E. LabWork02 #3

Merged
eegov merged 8 commits from LabWork02 into LabWork01 2022-10-07 09:05:52 +04:00
3 changed files with 4 additions and 4 deletions
Showing only changes of commit 3aa10a0e4b - Show all commits

View File

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

View File

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

View File

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