ed7a14b871
This time it sucks slightly less
12 lines
294 B
C#
12 lines
294 B
C#
using System;
|
|
using TrueCraft.API.Physics;
|
|
|
|
namespace TrueCraft.API.Entities
|
|
{
|
|
public interface IMobEntity : IEntity, IAABBEntity
|
|
{
|
|
PathResult CurrentPath { get; set; }
|
|
bool AdvancePath(TimeSpan time, bool faceRoute = true);
|
|
void Face(Vector3 target);
|
|
}
|
|
} |