aboutsummaryrefslogtreecommitdiff
path: root/src/settings.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/settings.h')
-rw-r--r--src/settings.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/settings.h b/src/settings.h
index 43eeb07..a2312df 100644
--- a/src/settings.h
+++ b/src/settings.h
@@ -1,11 +1,6 @@
#pragma once
#include <string>
-#include <map>
namespace settings {
- const std::map<std::string, std::string> dummySettings {
- {"weapon", "parser/items/weapons/"},
- {"armor", "parser/items/armor/"},
- {"spellcasting", "parser/spells"}
- };
+ std::string getString(const std::string& key);
}