mirror of
https://github.com/GTA-ASM/SanAndreasUnity
synced 2024-11-23 12:33:02 +00:00
9 lines
198 B
C#
9 lines
198 B
C#
using SanAndreasUnity.Utilities;
|
|
|
|
namespace SanAndreasUnity.Behaviours.Peds.AI
|
|
{
|
|
public interface IPathMovementState : IState
|
|
{
|
|
PathMovementData PathMovementData { get; }
|
|
}
|
|
}
|