Files
Loong/Assets/_Loong/Scripts/Guns/DragonBossGun.cs
2025-07-01 14:54:02 +08:00

19 lines
345 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class DragonBossGun : Launcher
{
public void Start()
{
// type = GunType.DragonBossGun;
// GunInfo gunInfo = GameManager.Ins.GunInfos[type][1];
// shootRate = gunInfo.ShootRate;
// recoil = gunInfo.Recoil;
}
}