LeviLamina
Loading...
Searching...
No Matches
PrefabTemplateErrorState.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Editor::Prefabs {
6
7enum class PrefabTemplateErrorState : int {
8 Valid = 0,
9 InvalidId = 1,
10 MissingStructure = 2,
11 AllErrors = 3,
12};
13
14}