summaryrefslogtreecommitdiff
path: root/SurvivalTest/Assets/Scripts/Decorations/Decoration_PowerRing.cs
blob: 79befce60b9c0042bd6fe816ddf3a799ba51f3e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

/// <summary>
/// 力量戒指
/// </summary>
public class Decoration_PowerRing : DecorationBase
{

	public override string name => "力量戒指";

	public override string iconPath => "art/ui/decoration/power_ring";

}