mirror of
https://github.com/codewriter-packages/Tri-Inspector.git
synced 2025-01-22 08:18:49 -05:00
16 lines
313 B
C#
16 lines
313 B
C#
|
using System;
|
|||
|
|
|||
|
namespace TriInspector
|
|||
|
{
|
|||
|
[Flags]
|
|||
|
public enum InlineEditorModes
|
|||
|
{
|
|||
|
GUIOnly = 1 << 0,
|
|||
|
Header = 1 << 1,
|
|||
|
Preview = 1 << 2,
|
|||
|
|
|||
|
GUIAndPreview = GUIOnly | Preview,
|
|||
|
GUIAndHeader = GUIOnly | Header,
|
|||
|
FullEditor = GUIOnly | Header | Preview,
|
|||
|
}
|
|||
|
}
|