LeviLamina
Loading...
Searching...
No Matches
PrefabSource.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Editor::Prefabs {
6
7enum class PrefabSource : int {
8 Project = 0,
9 Global = 1,
10 Unknown = 2,
11};
12
13}
Definition Global.h:6