summaryrefslogtreecommitdiff
path: root/engine/CoreObjects/ResourceManager.go
blob: d493bc2e4c6355cdc02048deabe609e1b7da3a04 (plain)
1
2
3
4
5
6
7
8
9
10
11
package coreobjects

import rl "github.com/gen2brain/raylib-go/raylib"

type ResourceManager struct {
	Textures TextrueManager
}

type TextrueManager struct {
	Textures map[uint64]rl.Texture2D
}