summaryrefslogtreecommitdiff
path: root/Assets/Scripts/Avatar/Actions/ActionPlaySfx.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Assets/Scripts/Avatar/Actions/ActionPlaySfx.cs')
-rw-r--r--Assets/Scripts/Avatar/Actions/ActionPlaySfx.cs19
1 files changed, 19 insertions, 0 deletions
diff --git a/Assets/Scripts/Avatar/Actions/ActionPlaySfx.cs b/Assets/Scripts/Avatar/Actions/ActionPlaySfx.cs
new file mode 100644
index 00000000..442ce999
--- /dev/null
+++ b/Assets/Scripts/Avatar/Actions/ActionPlaySfx.cs
@@ -0,0 +1,19 @@
+using System.Collections;
+using System.Collections.Generic;
+using UnityEngine;
+
+public class ActionPlaySfx : ActionBase
+{
+ GameObject m_Sfx;
+ Vector3 m_TargetPos;
+
+ public ActionPlaySfx(GameObject sfx, Vector3 position)
+ {
+ m_Sfx = sfx;
+ m_TargetPos = position;
+ }
+
+ public override void Execute()
+ {
+ }
+} \ No newline at end of file