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