15 lines
228 B
C#
15 lines
228 B
C#
|
namespace AlicizaX.UI.Runtime
|
|||
|
{
|
|||
|
public enum UIState:byte
|
|||
|
{
|
|||
|
Uninitialized,
|
|||
|
CreatedUI,
|
|||
|
Loaded,
|
|||
|
Initialized,
|
|||
|
Opened,
|
|||
|
Closed,
|
|||
|
Destroying,
|
|||
|
Destroyed,
|
|||
|
}
|
|||
|
}
|