ld-56/components/Persister/data_scope.gd
2024-10-06 04:22:46 -04:00

11 lines
347 B
GDScript

class_name PersisterEnums
enum Scope {
PERMANENT, # Stays forever
SAVE, # Persists through a save
GAME, # Persists through runs
RUN, # Persists through an entire run of the game
ROUND, # Persists through a round (if applicable, e.g. between ifa round is 2 mins between shops)
ROOM, # Persists within a game room (if applicable)
UNKNOWN
}