diff options
Diffstat (limited to 'engine/main.go')
| -rw-r--r-- | engine/main.go | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/engine/main.go b/engine/main.go new file mode 100644 index 0000000..47e07b3 --- /dev/null +++ b/engine/main.go @@ -0,0 +1,18 @@ +package main + +import ( + coreobjects "github.com/DegustatorPonos/RuinesOfRafdolon/CoreObjects" + gameobjects "github.com/DegustatorPonos/RuinesOfRafdolon/GameObjects" + render "github.com/DegustatorPonos/RuinesOfRafdolon/Render" + settings "github.com/DegustatorPonos/RuinesOfRafdolon/Settings" +) + +func main() { + settings.ReadSettings() + // TEMPORARY SECTION + var field = gameobjects.CreateField(8, 8) + + var manager = coreobjects.InitSceneManager() + render.InitWindow(manager, &field) +} + |
