summaryrefslogtreecommitdiff
path: root/include/file/metadata.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/file/metadata.hpp')
-rw-r--r--include/file/metadata.hpp13
1 files changed, 7 insertions, 6 deletions
diff --git a/include/file/metadata.hpp b/include/file/metadata.hpp
index 8b9ec4f..35b0a24 100644
--- a/include/file/metadata.hpp
+++ b/include/file/metadata.hpp
@@ -8,18 +8,19 @@
namespace file {
-enum class filetype : uint8_t {
- Map = 1,
- World,
- Player,
- TOTAL,
-};
struct metadata {
static constexpr auto magic = 27981915666277746uL;
static constexpr auto magic_mask = 0xFFFFFFFFFFFFFFuL;
static constexpr auto size = 20;
+ enum class filetype : uint8_t {
+ Map = 1,
+ World,
+ Player,
+ TOTAL,
+ };
+
enum class flags {
Favorite,
};