diff options
| author | Physcik <mynameisgennadiy@vk.com> | 2026-01-09 02:47:26 +0500 |
|---|---|---|
| committer | Physcik <mynameisgennadiy@vk.com> | 2026-01-09 02:47:26 +0500 |
| commit | e6ccb74f77d0d03d33c422ca7dc942422074d7dd (patch) | |
| tree | d6c04f5a2824f69792c326b192d89bd458ccbbeb /engine/Components/World/World.go | |
| parent | a6abcd529522c6682a4c2a1f25b1eaf6bd74d53d (diff) | |
Packages pt. 2
Diffstat (limited to 'engine/Components/World/World.go')
| -rw-r--r-- | engine/Components/World/World.go | 4 |
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 { |
