summaryrefslogtreecommitdiff
path: root/SurvivalTest/Assets/Scripts/Items/ExecutorParts/Item_ExecutorRightLeg.cs
diff options
context:
space:
mode:
Diffstat (limited to 'SurvivalTest/Assets/Scripts/Items/ExecutorParts/Item_ExecutorRightLeg.cs')
-rw-r--r--SurvivalTest/Assets/Scripts/Items/ExecutorParts/Item_ExecutorRightLeg.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/SurvivalTest/Assets/Scripts/Items/ExecutorParts/Item_ExecutorRightLeg.cs b/SurvivalTest/Assets/Scripts/Items/ExecutorParts/Item_ExecutorRightLeg.cs
new file mode 100644
index 0000000..50b0cc0
--- /dev/null
+++ b/SurvivalTest/Assets/Scripts/Items/ExecutorParts/Item_ExecutorRightLeg.cs
@@ -0,0 +1,14 @@
+using System.Collections;
+using System.Collections.Generic;
+using UnityEngine;
+
+/// <summary>
+/// 右腿
+/// </summary>
+public class Item_ExecutorRightLeg : Item_ExecutorPart
+{
+ public override string name => "行刑者右腿";
+
+ public override string iconPath => "art/ui/item/executor/executor_right_leg";
+
+}