mirror of
https://github.com/GTA-ASM/SanAndreasUnity
synced 2024-11-23 20:43:04 +00:00
15 lines
209 B
C#
15 lines
209 B
C#
using UnityEngine;
|
|
|
|
namespace SanAndreasUnity.Behaviours.Peds.States
|
|
{
|
|
|
|
public interface IAimState : IPedState
|
|
{
|
|
|
|
void StartFiring ();
|
|
|
|
void OnClientTriedToFire(Vector3 firePos, Vector3 fireDir);
|
|
|
|
}
|
|
|
|
}
|