LeviLamina
Loading...
Searching...
No Matches
InvocationState.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace OreUI {
6
7enum class InvocationState : uchar {
8 Idle = 0,
9 Working = 1,
10 Done = 2,
11};
12
13}