Movement/SpecialAction/ISpecialActionActivate.cs
Syntriax f0ffc2a8c4 Rewrite
- Movement & Controller
- Special Actions
- ToggleState
- ColliderChecker
- and 2D Implementations
2022-03-08 20:25:20 +03:00

12 lines
225 B
C#

using Syntriax.Modules.Movement.State;
namespace Syntriax.Modules.Movement.SpecialAction
{
public interface ISpecialActionActivate
{
IToggleState EnabledToggleState { get; }
void Activate();
}
}