summaryrefslogtreecommitdiff
path: root/engine/Components/World/World.go
diff options
context:
space:
mode:
authorPhyscik <mynameisgennadiy@vk.com>2026-01-09 02:47:26 +0500
committerPhyscik <mynameisgennadiy@vk.com>2026-01-09 02:47:26 +0500
commite6ccb74f77d0d03d33c422ca7dc942422074d7dd (patch)
treed6c04f5a2824f69792c326b192d89bd458ccbbeb /engine/Components/World/World.go
parenta6abcd529522c6682a4c2a1f25b1eaf6bd74d53d (diff)
Packages pt. 2
Diffstat (limited to 'engine/Components/World/World.go')
-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 {