diff options
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) |
