16 lines
412 B
C#
16 lines
412 B
C#
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; }
|
|
}
|
|
} |