diff options
Diffstat (limited to 'Assets/Scripts/Avatar/Bahaviours/GhostEffectSpwan.cs')
-rw-r--r-- | Assets/Scripts/Avatar/Bahaviours/GhostEffectSpwan.cs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Assets/Scripts/Avatar/Bahaviours/GhostEffectSpwan.cs b/Assets/Scripts/Avatar/Bahaviours/GhostEffectSpwan.cs new file mode 100644 index 00000000..cbc9c632 --- /dev/null +++ b/Assets/Scripts/Avatar/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(); + } + +} |