Modules for FSM

This commit is contained in:
Marco 2025-03-04 18:16:39 +01:00
commit bdc310d204
9 changed files with 74 additions and 23 deletions

View file

@ -3,7 +3,7 @@ using Godot;
namespace Cirno.Scripts.Components.FSM;
public interface IStateMachine<TKey, TType>
public interface IStateMachine<TKey, [MustBeVariant] TType>
where TKey : notnull
where TType : Node
{