Initial MVP
This commit is contained in:
8
scripts/resources/GameState.gd
Normal file
8
scripts/resources/GameState.gd
Normal 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] = []
|
||||
Reference in New Issue
Block a user