diff options
Diffstat (limited to 'scripts/Magic/SpellEffect.cs')
| -rw-r--r-- | scripts/Magic/SpellEffect.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/scripts/Magic/SpellEffect.cs b/scripts/Magic/SpellEffect.cs new file mode 100644 index 0000000..482a64f --- /dev/null +++ b/scripts/Magic/SpellEffect.cs @@ -0,0 +1,10 @@ +using Godot; +using TheLegendOfGustav.Entities.Actors; + +namespace TheLegendOfGustav.Magic; + +[GlobalClass] +public abstract partial class SpellEffect : Resource +{ + public abstract void Apply(Actor caster, Actor target); +}
\ No newline at end of file |
