blob: a82ddc7150004ff86de13861549938f8680f6d09 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Equip_LightSaber : EquipBase
{
public override string name => "¹â½£";
public override string iconPath => "art/ui/equipicon/light_saber";
public override AutoMode autoMode => AutoMode.Interval;
public override float interval => 5f;
public override void OnTrigger(GameObject owner)
{
}
}
|