mirror of
https://github.com/GTA-ASM/SanAndreasUnity
synced 2024-11-23 20:43:04 +00:00
20 lines
272 B
C#
20 lines
272 B
C#
|
using UnityEngine;
|
|||
|
using SanAndreasUnity.Importing.Animation;
|
|||
|
|
|||
|
namespace SanAndreasUnity.Behaviours.Weapons
|
|||
|
{
|
|||
|
|
|||
|
public class Spas12 : Weapon
|
|||
|
{
|
|||
|
|
|||
|
|
|||
|
public override AnimId AimAnim {
|
|||
|
get {
|
|||
|
return new AnimId (AnimGroup.Buddy, AnimIndex.buddy_fire);
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
}
|