Files
Echo/Assets/_Project/Scripts/UI/PanelStack/UIPanelKind.cs
T

12 lines
150 B
C#
Raw Normal View History

2026-07-08 19:53:15 +08:00
namespace UI.PanelStack
{
public enum UIPanelKind
{
Settings = 0,
Modal = 1,
Pause = 2,
Custom = 100
}
}