set up the core singleton systems that will manage lobal settings

This commit is contained in:
Your Name
2025-07-19 20:16:14 +04:00
parent e27cd7f62a
commit 292112b195
7 changed files with 21 additions and 0 deletions

View File

@@ -14,6 +14,12 @@ config/name="Skelly"
config/features=PackedStringArray("4.4", "Mobile") config/features=PackedStringArray("4.4", "Mobile")
config/icon="res://icon.svg" config/icon="res://icon.svg"
[autoload]
AudioManager="*res://scripts/AudioManager.gd"
GameManager="*res://scripts/GameManager.gd"
SettingsManager="*res://scripts/SettingsManager.gd"
[rendering] [rendering]
renderer/rendering_method="mobile" renderer/rendering_method="mobile"

4
scripts/AudioManager.gd Normal file
View File

@@ -0,0 +1,4 @@
extends Node
func _ready():
pass

View File

@@ -0,0 +1 @@
uid://cxka0038cwpgp

4
scripts/GameManager.gd Normal file
View File

@@ -0,0 +1,4 @@
extends Node
func _ready():
pass

View File

@@ -0,0 +1 @@
uid://bmwk2n0b6bb2r

View File

@@ -0,0 +1,4 @@
extends Node
func _ready():
pass

View File

@@ -0,0 +1 @@
uid://c3btjbwj5p0vu