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