2
This commit is contained in:
parent
2cc77cabac
commit
d6c18f6804
29
Seaplane/DirectionType.cs
Normal file
29
Seaplane/DirectionType.cs
Normal file
@ -0,0 +1,29 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Seaplane;
|
||||
/// <summary>
|
||||
/// Направление перемещения
|
||||
/// </summary>
|
||||
public enum DirectionType
|
||||
{
|
||||
/// <summary>
|
||||
/// Вверх
|
||||
/// </summary>
|
||||
Up = 1,
|
||||
/// <summary>
|
||||
/// Вниз
|
||||
/// </summary>
|
||||
Down = 2,
|
||||
/// <summary>
|
||||
/// Влево
|
||||
/// </summary>
|
||||
Left = 3,
|
||||
/// <summary>
|
||||
/// Вправо
|
||||
/// </summary>
|
||||
Right = 4,
|
||||
}
|
@ -1,11 +1,7 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Seaplane;
|
||||
|
||||
namespace Seaplane;
|
||||
/// <summary>
|
||||
/// Класс-сущность Гидросамолет
|
||||
/// </summary>
|
||||
public class EnitySeaplane
|
||||
{ /// <summary>
|
||||
/// Скорость
|
||||
|
Loading…
x
Reference in New Issue
Block a user