Files
robot_intelligence_final_pr…/ConsoleApp/IVehicle.cs
Brady Bodily d63066c150 Backup
Working through some localization stuff will probably be pretty fluid.
2020-12-14 16:08:59 -07:00

16 lines
388 B
C#

using ConsoleApp.Maps;
namespace ConsoleApp
{
public interface IVehicle
{
int Length { get; }
int Width { get; }
int DetectorOffset { get;}
int DetectorWidth { get;}
ICell CurrentHexCell { get; set; }
Heading HexHeading { get; set; }
Heading SquareHeading { get; set; }
ICell CurrentSquareCell { get; set; }
}
}