36 lines
575 B
C#
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
|
|
}
|
|
} |