mirror of
https://github.com/GTA-ASM/SanAndreasUnity
synced 2024-11-15 00:37:09 +00:00
18 lines
293 B
C#
18 lines
293 B
C#
using UnityEngine;
|
|
using SanAndreasUnity.Importing.Animation;
|
|
|
|
namespace SanAndreasUnity.Behaviours.Weapons
|
|
{
|
|
|
|
public class CountryRifle : Weapon
|
|
{
|
|
|
|
protected override void InitWeapon ()
|
|
{
|
|
base.InitWeapon();
|
|
this.CrouchAimAnim = new AnimId("RIFLE", "RIFLE_crouchfire");
|
|
}
|
|
|
|
}
|
|
|
|
}
|