Files
robot_intelligence_final_pr…/ConsoleApp/Sim/IVehicle.cs
2020-12-16 17:19:25 -07:00

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; }
}
}