Files
secretsplash/Runtime/PSXUIElementType.cs
2026-03-25 12:25:48 +01:00

15 lines
326 B
C#

namespace SplashEdit.RuntimeCode
{
/// <summary>
/// UI element types matching the C++ UIElementType enum.
/// Values must stay in sync with uisystem.hh.
/// </summary>
public enum PSXUIElementType : byte
{
Image = 0,
Box = 1,
Text = 2,
Progress = 3
}
}