Files
MovementTests/addons/forge/editor/statescript/InlineSummaryBadgeKind.cs
Minimata e09714cf83
All checks were successful
Create tag and build when new code gets to main / BumpTag (push) Successful in 27s
Create tag and build when new code gets to main / Export (push) Successful in 7m25s
update forge
2026-05-17 00:06:44 +02:00

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