summaryrefslogtreecommitdiff
path: root/SurvivalTest/Assets/Scripts/Equips/Equip_TeslaCoil.cs
blob: 1546e1be8026f1b51e8ee34ff8ef05e5edb550be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

/// <summary>
/// ÌØË¹À­ÏßȦ
/// </summary>
public class Equip_TeslaCoil : EquipBase
{
	public override AutoMode autoMode => AutoMode.Interval;

	public override float interval => 1f;

	public override void OnTrigger(GameObject owner)
	{
		throw new System.NotImplementedException();
	}

}