1
0
mirror of https://github.com/XFox111/MuiCharts.git synced 2026-04-22 06:51:05 +03:00
Files
MuiCharts/frontend/src/Data/ITrack.ts
T
2024-02-22 18:34:31 +00:00

22 lines
368 B
TypeScript

import MaxSpeed from "./MaxSpeed";
import Surface from "./Surface";
/** Represents a track segment */
export default interface ITrack
{
/** First point ID */
firstId: number;
/** Second (last) point ID */
secondId: number;
/** Distance between points */
distance: number;
/** Surface type */
surface: Surface;
/** Maximum speed */
maxSpeed: MaxSpeed;
}