- using System.Collections;
- using System.Collections.Generic;
- using UnityEngine;
- public interface IEffectsHandler
- {
- void ApplyEffect(EffectBase effect, GameObject source);
- void RemoveEffect(EffectBase effect, GameObject source);
- void RemoveEffect(int index);
- }