feat: add track classes

This commit is contained in:
2025-10-18 01:32:04 +02:00
parent e154a1fde9
commit da8c64624f
3 changed files with 79 additions and 0 deletions

13
src/track_object.py Normal file
View File

@@ -0,0 +1,13 @@
from enum import StrEnum
class TrackObjectType(StrEnum):
Road = "road"
class TrackObject:
def __init__(
self,
type: TrackObjectType,
) -> None:
self.type: TrackObjectType = type