diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2016-06-29 17:56:48 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2016-06-29 17:56:48 -0400 |
commit | 3766c45c62eeca442e9ab700c09c547f08615b62 (patch) | |
tree | 37e2c5c2c28f7a0c79eb39daa6276e018595be18 /main.cpp | |
parent | df12451f837854c816bed32ae0d962fba9601959 (diff) |
chests, item dropping
Diffstat (limited to 'main.cpp')
-rw-r--r-- | main.cpp | 11 |
1 files changed, 8 insertions, 3 deletions
@@ -265,8 +265,8 @@ int main(int argc, char *argv[]) for (const auto &xf : xmlFiles) { if (xf[0] != '.') { XMLDocument xmld; - auto file = (xmlFolder + xf).c_str(); - xmld.LoadFile(file); + auto file = xmlFolder + xf; + xmld.LoadFile(file.c_str()); auto xmle = xmld.FirstChildElement("World"); @@ -286,7 +286,8 @@ int main(int argc, char *argv[]) xmle->DeleteAttribute("dindex"); xmle = xmle->NextSiblingElement(); } - xmld.SaveFile(file, false); + + xmld.SaveFile(file.c_str(), false); } } @@ -328,6 +329,10 @@ int main(int argc, char *argv[]) arena->setBackground(WorldBGType::Forest); arena->setBGM("assets/music/embark.wav"); + + player->inv->addItem("Wood Sword", 10); + + // the main loop, in all of its gloriousness.. std::thread([&]{ while (gameRunning) { |