mirror of
https://github.com/GTA-ASM/SanAndreasUnity
synced 2025-02-19 22:38:28 +00:00
13 lines
145 B
C#
13 lines
145 B
C#
using UnityEngine;
|
|
|
|
namespace SanAndreasUnity.Behaviours.Peds.States
|
|
{
|
|
|
|
public interface IFireState : IPedState
|
|
{
|
|
|
|
void StopFiring();
|
|
|
|
}
|
|
|
|
}
|