blob: e83614cbbfc7c042fde79ff6690fc9ca6a0a71ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Equip_RailGun : EquipBase
{
public override string name => "¹ìµÀÅÚ";
public override string iconPath => "";
public override AutoMode autoMode => AutoMode.Interval;
public override void OnTrigger(GameObject owner)
{
}
}
|