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