mirror of
https://github.com/GTA-ASM/SanAndreasUnity
synced 2024-11-23 20:43:04 +00:00
18 lines
308 B
C#
18 lines
308 B
C#
using UnityEngine;
|
|
using SanAndreasUnity.Importing.Animation;
|
|
|
|
namespace SanAndreasUnity.Behaviours.Weapons
|
|
{
|
|
|
|
public class Tec9 : Weapon
|
|
{
|
|
|
|
protected override void InitWeapon ()
|
|
{
|
|
base.InitWeapon();
|
|
this.CrouchSpineRotationOffset = WeaponsManager.Instance.crouchSpineRotationOffset2;
|
|
}
|
|
|
|
}
|
|
|
|
}
|