Update readme and better config defaults

This commit is contained in:
Adrian Hedqvist 2017-10-18 14:37:32 +02:00
parent ff799185fb
commit 817da7bd60
2 changed files with 5 additions and 1 deletions

View file

@ -26,6 +26,10 @@ Currently, you need to import the source as a new project in visual studio and s
* [ ] Make entities and AI completely data-driven
* [ ] Implement Lua for item/effects/action scripting
* Might as well use it for basic data storage as well, since I can then skip creating my own parser or adding an additional library for json/yaml/toml/whatever.
* [x] Initial implementation
* [ ] Items
* [ ] Status Effects
* [ ] Spells
### Wishlist

View file

@ -1,7 +1,7 @@
function dungeon.config(cfg)
cfg.window.fullscreen = false
cfg.window.width = 792
cfg.window.height = 300
cfg.window.height = 600
cfg.gfx.vsync = false
cfg.gfx.wireframes = false
end