Files
KOF/Assets/_KOF/Scripts/Guns/DoubleTubeGun.cs
2025-07-02 15:13:26 +08:00

15 lines
328 B
C#

using Pico.Platform;
public class DoubleTubeGun : Launcher
{
public void Start()
{
if (isServer)
{
type = GunType.DoubleTubeGun;
GunInfo gunInfo = GameManager.Ins.GunInfos[type][1];
shootRate = gunInfo.ShootRate;
recoil = gunInfo.Recoil;
}
}
}