13 lines
235 B
C#
13 lines
235 B
C#
using System.Collections;
|
|
using UnityEngine;
|
|
|
|
namespace HurricaneVR.Framework.Weapons.Guns
|
|
{
|
|
public class HVRPistol : HVRGunBase
|
|
{
|
|
protected override void Awake()
|
|
{
|
|
base.Awake();
|
|
}
|
|
}
|
|
} |