mirror of
https://github.com/GTA-ASM/SanAndreasUnity
synced 2024-11-24 04:53:05 +00:00
16 lines
247 B
C#
16 lines
247 B
C#
|
using UnityEngine;
|
||
|
using SanAndreasUnity.Behaviours.Vehicles;
|
||
|
|
||
|
namespace SanAndreasUnity.Behaviours.Peds.States
|
||
|
{
|
||
|
|
||
|
public interface IVehicleState : IPedState
|
||
|
{
|
||
|
|
||
|
Vehicle CurrentVehicle { get; }
|
||
|
Vehicle.Seat CurrentVehicleSeat { get; }
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|