8 lines
No EOL
164 B
C#
8 lines
No EOL
164 B
C#
namespace Newlon.Systems.Effects;
|
|
|
|
public interface IEffectHandler
|
|
{
|
|
void GiveEffect(Effect what);
|
|
void EndEffect(Effect what);
|
|
void ProcessEffects();
|
|
} |