blob: 43eeb077b17df0db9702aa26a8739fc8fd08518b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#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"}
};
}
|