20 lines
388 B
C#
20 lines
388 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class BLR02Gun : Launcher
|
|
{
|
|
public void Start()
|
|
{
|
|
if (isServer)
|
|
{
|
|
// type = GunType.BLR02Gun;
|
|
// GunInfo gunInfo = GameManager.Ins.GunInfos[type];
|
|
// shootRate = gunInfo.ShootRate;
|
|
// recoil = gunInfo.Recoil;
|
|
}
|
|
}
|
|
|
|
|
|
}
|