diff options
| author | Matheus <matheus.guedes.mg.m@gmail.com> | 2025-09-13 11:06:46 -0300 |
|---|---|---|
| committer | Matheus <matheus.guedes.mg.m@gmail.com> | 2025-09-13 11:06:46 -0300 |
| commit | 539fd4820f37aa54df8878091db9680d89ee027a (patch) | |
| tree | 41f9f5d6aa123058e3549c1baba4155fa5a85279 /scripts/Magic/SpellEffect.cs | |
| parent | b8962990ddb75b874a49c83d8eeaba7b7e45c196 (diff) | |
pergaminho
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 |
