mirror of
https://github.com/GTA-ASM/SanAndreasUnity
synced 2024-11-23 20:43:04 +00:00
19 lines
296 B
C#
19 lines
296 B
C#
using UnityEngine;
|
|
using SanAndreasUnity.Importing.Animation;
|
|
|
|
namespace SanAndreasUnity.Behaviours.Weapons
|
|
{
|
|
|
|
public class SniperRifle : Weapon
|
|
{
|
|
|
|
protected override void InitWeapon ()
|
|
{
|
|
base.InitWeapon();
|
|
this.CrouchAimAnim = new AnimId("RIFLE", "RIFLE_crouchfire");
|
|
}
|
|
|
|
|
|
}
|
|
|
|
}
|