Files
Two-World/Assets/Cainos/Third Party/Lucid Editor/Runtime/Enum.cs
2025-05-08 16:03:30 +09:00

36 lines
575 B
C#

namespace Cainos.LucidEditor
{
public enum InspectorButtonSize
{
Small,
Medium,
Large,
ExtraLarge
}
public enum InspectorColor
{
Clear,
Red,
Green,
Blue,
Cyan,
Magenta,
Yellow,
Orange,
Purple,
Pink,
Indigo,
White,
Gray,
Grey,
Black,
EditorText,
EditorTextSelected,
EditorBackground,
EditorLine,
EditorThinLine,
EditorWarning,
EditorError
}
}