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

10 lines
106 B
TypeScript

/** Represents the type of surface. */
enum Surface
{
SAND,
ASPHALT,
GROUND
}
export default Surface;