summaryrefslogtreecommitdiff
path: root/SurvivalTest/Assets/Scripts/Items/ExecutorParts/Item_ExecutorLeftArm.cs
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2022-04-25 22:52:53 +0800
committerchai <chaifix@163.com>2022-04-25 22:52:53 +0800
commit38c850ede10d07ee3e6a7ce96b7f9d105960f5d7 (patch)
tree801aceb88a2a6276b72000a1735962551c79fa46 /SurvivalTest/Assets/Scripts/Items/ExecutorParts/Item_ExecutorLeftArm.cs
parent30559a358be81b07039fffbd0bb5a57af50a17c1 (diff)
* misc
Diffstat (limited to 'SurvivalTest/Assets/Scripts/Items/ExecutorParts/Item_ExecutorLeftArm.cs')
-rw-r--r--SurvivalTest/Assets/Scripts/Items/ExecutorParts/Item_ExecutorLeftArm.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/SurvivalTest/Assets/Scripts/Items/ExecutorParts/Item_ExecutorLeftArm.cs b/SurvivalTest/Assets/Scripts/Items/ExecutorParts/Item_ExecutorLeftArm.cs
new file mode 100644
index 0000000..ffdbc1e
--- /dev/null
+++ b/SurvivalTest/Assets/Scripts/Items/ExecutorParts/Item_ExecutorLeftArm.cs
@@ -0,0 +1,14 @@
+using System.Collections;
+using System.Collections.Generic;
+using UnityEngine;
+
+/// <summary>
+/// 左臂
+/// </summary>
+public class Item_ExecutorLeftArm : Item_ExecutorPart
+{
+ public override string name => "行刑者左臂";
+
+ public override string iconPath => "art/ui/item/executor/executor_left_arm";
+
+}