refactor: removed X.Abstract namespaces and moved StateMachine to under Systems namespace

This commit is contained in:
2025-04-15 23:33:58 +03:00
parent 94d01521d4
commit 8293c58f9f
79 changed files with 38 additions and 110 deletions

View File

@@ -1,4 +1,4 @@
namespace Syntriax.Engine.StateMachine;
namespace Syntriax.Engine.Systems.StateMachine;
public readonly record struct StateTransition(IState State, IReadOnlyList<Func<bool>> Conditions)
{