Enemy blinking

This commit is contained in:
Marco 2025-06-26 14:03:36 +02:00
commit e5a60a6ccd
11 changed files with 172 additions and 30 deletions

View file

@ -12,6 +12,7 @@ public interface IStateMachine<TKey, [MustBeVariant] TType>
public IState<TKey, TType> CurrentState { get; }
public TKey InitialState { get; }
public void SetState(TKey stateId);
public TKey GetState();
public TType MainObject { get; }
}