blob: 50b0cc06266ffd5c843f18f2d92e6bf16638d611 (
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_ExecutorRightLeg : Item_ExecutorPart
{
public override string name => "行刑者右腿";
public override string iconPath => "art/ui/item/executor/executor_right_leg";
}
|