grunk/src/game/game.gd

15 lines
289 B
GDScript3
Raw Normal View History

2025-03-07 19:26:12 -07:00
class_name Game extends Node
## Interface to the game as an application.
## Handy typed singleton access.
static var manager: GameManagerType:
get():
return GameManager
2025-03-20 22:45:19 -06:00
2025-03-22 17:16:17 -06:00
## Global static access to Game singleton
static var instance: Game
func _ready() -> void:
Game.instance = self