LeviLamina
Loading...
Searching...
No Matches
ProfileImageState.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace OreUI {
6
7enum class ProfileImageState : int {
8 Undefined = 0,
9 Requested = 1,
10 Success = 2,
11 Failure = 3,
12};
13
14}