blob: d5e4189e96f908f71a60607cb2b0a36647a6966c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
/// <summary>
/// 超凡手套,集齐五颗宝石饰品解锁超武
/// </summary>
public class Equip_MightyGlove : EquipBase
{
public override string name => "";
public override string iconPath => "";
public override AutoMode autoMode => AutoMode.Interval;
public override void OnTrigger(GameObject owner)
{
}
}
|