Adrian Hedqvist
ec131d8bda
* 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
7 lines
171 B
Lua
7 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
|