Back up
This commit is contained in:
16
ConsoleApp/Vehicle/IVehicle.cs
Normal file
16
ConsoleApp/Vehicle/IVehicle.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using ConsoleApp.Maps;
|
||||
|
||||
namespace ConsoleApp.Vehicle
|
||||
{
|
||||
public interface IVehicle
|
||||
{
|
||||
int Length { get; }
|
||||
int Width { get; }
|
||||
int DetectorOffset { get;}
|
||||
int DetectorRadius { get;}
|
||||
HexCore.Coordinate2D CurrentHexCell { get; set; }
|
||||
Heading HexHeading { get; set; }
|
||||
Heading SquareHeading { get; set; }
|
||||
ICell CurrentSquareCell { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user