blob: c0bdfc61f625e806458446124bf5bac9b2f5a431 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
/// <summary>
/// ÌØË¹ÀÏßȦ
/// </summary>
public class Equip_TeslaCoil : EquipBase
{
public override string name => "";
public override string iconPath => "";
public override AutoMode autoMode => AutoMode.Interval;
public override float interval => 1f;
public override void OnTrigger(GameObject owner)
{
throw new System.NotImplementedException();
}
}
|