diff --git a/README.md b/README.md index 084c4db..c716357 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/config.lua b/config.lua index 84e5211..bdf8084 100644 --- a/config.lua +++ b/config.lua @@ -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