Files
robot_intelligence_final_pr…/ConsoleApp/Sim/IVehicle.cs
2020-12-16 04:02:37 -07:00

15 lines
327 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; }
ICell CurrentSquareCell { get; set; }
}
}