diff options
Diffstat (limited to 'Assets/Scripts/Unit/Components/UnitState/PCState_Event.cs')
-rw-r--r-- | Assets/Scripts/Unit/Components/UnitState/PCState_Event.cs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Assets/Scripts/Unit/Components/UnitState/PCState_Event.cs b/Assets/Scripts/Unit/Components/UnitState/PCState_Event.cs new file mode 100644 index 00000000..b5c0833f --- /dev/null +++ b/Assets/Scripts/Unit/Components/UnitState/PCState_Event.cs @@ -0,0 +1,13 @@ +using System.Collections;
+using System.Collections.Generic;
+using UnityEngine;
+
+public partial class PCState : UnitState
+{
+
+ void OnTimeLineEvent(AnimationEventBase animEvent)
+ {
+
+ }
+
+}
|