LeviLamina
Loading...
Searching...
No Matches
LevelStorageState.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Core {
6
7enum class LevelStorageState : int {
8 Open = 0,
9 Corrupted = 1,
10 NotFound = 2,
11 IOError = 3,
12 NotSupported = 4,
13 InvalidArguments = 5,
14 Unknown = 6,
15};
16
17}