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