17 lines
250 B
C#
17 lines
250 B
C#
// Copyright © Gamesmiths Guild.
|
|
|
|
#if TOOLS
|
|
namespace Gamesmiths.Forge.Godot.Editor.Statescript;
|
|
|
|
internal enum InlineSummaryBadgeKind
|
|
{
|
|
Resolver = 0,
|
|
Numeric = 1,
|
|
Vector = 2,
|
|
Boolean = 3,
|
|
Variable = 4,
|
|
SharedVariable = 5,
|
|
Enum = 6,
|
|
}
|
|
#endif
|