Initial MVP

This commit is contained in:
Aodhan Collins
2026-01-26 02:57:40 +00:00
commit b42521a008
33 changed files with 1004 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
class_name GameState extends Resource
@export var current_room_id: String
@export var player_hp: int = 100
@export var player_max_hp: int = 100
@export var inventory: Array[ItemData]
@export var world_flags: Dictionary = {}
@export var explored_rooms: Array[String] = []