Files
MRCS/Assets/_MrCs/Scripts/Guns/DoubleTubeGun.cs

15 lines
340 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;
}
}
}