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