newlon/scripts/systems/effects/IEffectHandler.cs

8 lines
No EOL
164 B
C#

namespace Newlon.Systems.Effects;
public interface IEffectHandler
{
void GiveEffect(Effect what);
void EndEffect(Effect what);
void ProcessEffects();
}