Spider bomb in FSM

This commit is contained in:
Maddo 2025-03-08 11:33:26 +01:00
commit 4913eba12e
20 changed files with 300 additions and 48 deletions

View file

@ -6,6 +6,8 @@ public interface IModule<TKey, TType>
where TKey : notnull
where TType : Node
{
public void EnterState(TKey state);
public void ExitState(TKey state);
public void Init(IStateMachine<TKey, TType> machine);
public void Process(double delta);
public void PhysicsProcess(double delta);