summaryrefslogtreecommitdiff
path: root/Assets/Scripts/AbilitySystem/Bahaviours/GhostEffectSpwan.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Assets/Scripts/AbilitySystem/Bahaviours/GhostEffectSpwan.cs')
-rw-r--r--Assets/Scripts/AbilitySystem/Bahaviours/GhostEffectSpwan.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/Assets/Scripts/AbilitySystem/Bahaviours/GhostEffectSpwan.cs b/Assets/Scripts/AbilitySystem/Bahaviours/GhostEffectSpwan.cs
new file mode 100644
index 00000000..cbc9c632
--- /dev/null
+++ b/Assets/Scripts/AbilitySystem/Bahaviours/GhostEffectSpwan.cs
@@ -0,0 +1,14 @@
+using System.Collections;
+using System.Collections.Generic;
+using UnityEngine;
+
+public class GhostEffectSpwan : MonoBehaviour
+{
+ public CharacterGhostEffect GhostEffect;
+
+ public void SpawnGhost()
+ {
+ GhostEffect.CreateGhost();
+ }
+
+}