16 lines
287 B
GDScript
16 lines
287 B
GDScript
###
|
|
### global constants
|
|
###
|
|
extends Object
|
|
|
|
class_name GDBConstants
|
|
|
|
const SETTING_RECENT_PLACES = "recent_places"
|
|
const SETTING_FAVOURITE_PLACES = "favourite_places"
|
|
|
|
################
|
|
# public stuff #
|
|
################
|
|
func _init():
|
|
assert(0, "This class should not be instantiated.")
|