diff options
| author | Physcik <mynameisgennadiy@vk.com> | 2026-01-07 01:35:41 +0500 |
|---|---|---|
| committer | Physcik <mynameisgennadiy@vk.com> | 2026-01-07 01:35:41 +0500 |
| commit | 284b235a8f7672090bc4f31e56d451bb21d8ee55 (patch) | |
| tree | 3ab29719b42c6efff775026d41c62ca9fb49b870 /engine/main.go | |
| parent | d804d0467399c821a05832a96ae4780ef69fb1bf (diff) | |
build system upgrades
Diffstat (limited to 'engine/main.go')
| -rw-r--r-- | engine/main.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/main.go b/engine/main.go index 47e07b3..8d11769 100644 --- a/engine/main.go +++ b/engine/main.go @@ -1,8 +1,8 @@ package main import ( + components "github.com/DegustatorPonos/RuinesOfRafdolon/Components" coreobjects "github.com/DegustatorPonos/RuinesOfRafdolon/CoreObjects" - gameobjects "github.com/DegustatorPonos/RuinesOfRafdolon/GameObjects" render "github.com/DegustatorPonos/RuinesOfRafdolon/Render" settings "github.com/DegustatorPonos/RuinesOfRafdolon/Settings" ) @@ -10,7 +10,7 @@ import ( func main() { settings.ReadSettings() // TEMPORARY SECTION - var field = gameobjects.CreateField(8, 8) + var field = components.CreateWorld(8, 8) var manager = coreobjects.InitSceneManager() render.InitWindow(manager, &field) |
