summaryrefslogtreecommitdiff
path: root/SurvivalTest/Assets/Scripts/Items/ExecutorParts/Item_ExecutorLeftArm.cs
blob: ffdbc1e87ca9a1c062a3769130cedd61f2320b34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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";

}