summaryrefslogtreecommitdiff
path: root/engine/Components
diff options
context:
space:
mode:
Diffstat (limited to 'engine/Components')
-rw-r--r--engine/Components/ResourceManager.go6
1 files changed, 2 insertions, 4 deletions
diff --git a/engine/Components/ResourceManager.go b/engine/Components/ResourceManager.go
index 7dae454..c4953e3 100644
--- a/engine/Components/ResourceManager.go
+++ b/engine/Components/ResourceManager.go
@@ -15,17 +15,15 @@ type ResourceManager struct {
LoadedPackages map[string]*settings.AppVersion
Textures TextrueManager
objects map[string]*coreobjects.DynamicObject
- Worlds map[string]*World
- Menus map[string]coreobjects.Scene
+ Scenes map[string]coreobjects.Scene
}
// Initializes the shared resource manager
func InitManager() {
Resources = ResourceManager{
LoadedPackages: make(map[string]*settings.AppVersion),
- Worlds: make(map[string]*World),
objects: make(map[string]*coreobjects.DynamicObject),
- Menus: make(map[string]coreobjects.Scene),
+ Scenes: make(map[string]coreobjects.Scene),
Textures: TextrueManager{
Textures: make([]*rl.Texture2D, 0),
NameToId: make(map[string]uint64),