15 lines
328 B
C#
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;
|
|
}
|
|
}
|
|
} |