2024-11-17 12:35:28 -07:00
|
|
|
class_name WorldUI extends Control
|
|
|
|
## Container & accessor for the world UI.
|
|
|
|
|
2024-11-19 11:51:05 -07:00
|
|
|
@onready var hud_container: Control = %HUDContainer
|
|
|
|
|
|
|
|
|
|
|
|
func add_player_hud(hud: ShotHUD) -> void:
|
|
|
|
hud_container.add_child(hud)
|