From 817da7bd6039e4ceb2dd4648080e19c2cd443760 Mon Sep 17 00:00:00 2001 From: Adrian Hedqvist Date: Wed, 18 Oct 2017 14:37:32 +0200 Subject: [PATCH] Update readme and better config defaults --- README.md | 4 ++++ config.lua | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) 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