Files
robot_intelligence_final_pr…/ConsoleApp/IVehicle.cs
2020-12-10 21:18:15 -07:00

9 lines
156 B
C#

namespace ConsoleApp
{
public interface IVehicle
{
int Length { get; }
int Width { get; }
int DetectorWidth { get; }
}
}