Files
robot_intelligence_final_pr…/ConsoleApp/Vehicle/IVehicle.cs
2020-12-15 15:46:45 -07:00

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