8 lines
203 B
GDScript
8 lines
203 B
GDScript
# file containing the world state for the player
|
|
extends Node
|
|
|
|
|
|
@export var current_zone: Globals.World.Zones
|
|
@export var player_level: int
|
|
@export var player_exp: int
|
|
@export var last_played: Dictionary |