blob: dc35b5e48a798dfa03154d57e1ae0a54fd0187ac (
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_ExecutorRightArm : Item_ExecutorPart
{
public override string name => "行刑者右臂";
public override string iconPath => "art/ui/item/executor/executor_right_arm";
}
|