dungeon/config.lua
Adrian Hedqvist ec131d8bda Too much stuff
* Implemented lua using kaguya, only for config files for now
* Moved color struct to its own header
* statically link glew instead of including the source in the project
* Other stuff that I don't remember
2017-10-18 12:25:25 +02:00

8 lines
171 B
Lua

function dungeon.config(cfg)
cfg.window.fullscreen = false
cfg.window.width = 792
cfg.window.height = 300
cfg.gfx.vsync = false
cfg.gfx.wireframes = false
end