LeviLamina
Loading...
Searching...
No Matches
PrefabInstanceErrorState.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Editor::Prefabs {
6
7enum class PrefabInstanceErrorState : int {
8 // bitfield representation
9 Valid = 0,
10 InvalidInstanceId = 1 << 0,
11 InvalidTemplateId = 1 << 1,
12 InvalidStructureRefId = 1 << 2,
13 MissingTemplate = 1 << 3,
14 AllErrors = InvalidInstanceId | InvalidTemplateId | InvalidStructureRefId | MissingTemplate,
15};
16
17}