summaryrefslogtreecommitdiff
path: root/src/mmo/enums.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mmo/enums.hpp')
-rw-r--r--src/mmo/enums.hpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mmo/enums.hpp b/src/mmo/enums.hpp
index 52e1009..62ce8ee 100644
--- a/src/mmo/enums.hpp
+++ b/src/mmo/enums.hpp
@@ -27,6 +27,9 @@
# include "../generic/enum.hpp"
+
+namespace tmwa
+{
enum class SkillID : uint16_t;
constexpr SkillID MAX_SKILL = SkillID(474); // not 450
constexpr SkillID get_enum_min_value(SkillID) { return SkillID(); }
@@ -157,5 +160,6 @@ bool network_to_native(SEX *native, char network)
*native = sex_from_char(network);
return true;
}
+} // namespace tmwa
#endif // TMWA_MMO_ENUMS_HPP