LeviLamina
Loading...
Searching...
No Matches
ComponentState.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Settings {
6
7enum class ComponentState : int {
8 Hidden = 0,
9 Disabled = 1,
10 Enabled = 2,
11};
12
13}