summaryrefslogtreecommitdiff
path: root/engine/Components/World
diff options
context:
space:
mode:
Diffstat (limited to 'engine/Components/World')
-rw-r--r--engine/Components/World/World.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/engine/Components/World/World.go b/engine/Components/World/World.go
index 47f776a..80ef7e9 100644
--- a/engine/Components/World/World.go
+++ b/engine/Components/World/World.go
@@ -16,6 +16,10 @@ type World struct {
Camera rl.Camera2D
}
+func (base *World) IsValid() error {
+ return nil
+}
+
func (base *World) Create(_ coreobjects.SceneManager) {
base.Textures = map[int]rl.Texture2D{}
for k, v := range base.TextureNames {