15 lines
326 B
C#
15 lines
326 B
C#
using ConsoleApp.Maps;
|
|
using HexCore;
|
|
|
|
namespace ConsoleApp.Sim
|
|
{
|
|
public interface IVehicle
|
|
{
|
|
int Length { get; }
|
|
int Width { get; }
|
|
int TurnRadius { get; }
|
|
int DetectorRadius { get;}
|
|
Coordinate2D CurrentHexCell { get; set; }
|
|
Cell CurrentSquareCell { get; set; }
|
|
}
|
|
} |