Изменения в названиях.
This commit is contained in:
parent
479df94730
commit
e33200dca0
@ -6,7 +6,7 @@ using System.Threading.Tasks;
|
||||
|
||||
namespace Airbus
|
||||
{
|
||||
internal class SecondSimpleMap: AbstractMap
|
||||
internal class DesertMap: AbstractMap
|
||||
{
|
||||
//цвет закрытого участка
|
||||
Brush barriedColor = new SolidBrush(Color.DarkRed);
|
@ -79,11 +79,11 @@ namespace Airbus
|
||||
_abstractMap = new SimpleMap();
|
||||
break;
|
||||
case "Пустыня":
|
||||
_abstractMap = new SecondSimpleMap();
|
||||
_abstractMap = new DesertMap();
|
||||
break;
|
||||
case "Космос":
|
||||
|
||||
_abstractMap = new ThirdSimpleMap();
|
||||
_abstractMap = new SpaceMap();
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
@ -6,7 +6,7 @@ using System.Threading.Tasks;
|
||||
|
||||
namespace Airbus
|
||||
{
|
||||
internal class ThirdSimpleMap: AbstractMap
|
||||
internal class SpaceMap: AbstractMap
|
||||
{
|
||||
Random rnd = new Random();
|
||||
|
Loading…
x
Reference in New Issue
Block a user