small racing game im working on
Diffstat (limited to 'ui/hud.gd')
| -rw-r--r-- | ui/hud.gd | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/ui/hud.gd b/ui/hud.gd new file mode 100644 index 0000000..3dcdff5 --- /dev/null +++ b/ui/hud.gd @@ -0,0 +1,8 @@ +extends Node +class_name HUD + +signal assigned(car: Car, ghost: GhostCar, timer: GameTimer, track: TrackLoader) +signal next_lap + +@export var splits: Splits +@export var laps: LapCounter
\ No newline at end of file |