prototype vibe

This commit is contained in:
Marek Lenczewski
2026-04-16 17:20:57 +02:00
parent cf5979803e
commit f21e30eb55
72 changed files with 1330 additions and 70 deletions

10
scenes/tavern/init.gd Normal file
View File

@@ -0,0 +1,10 @@
extends StaticBody3D
@export var stats: TavernStats
func _ready() -> void:
add_to_group("tavern")
TavernData.register(self, stats)
func _exit_tree() -> void:
TavernData.deregister(self)