Drew DeVault ed7a14b871 Rewrite physics engine
This time it sucks slightly less
2015-07-06 19:30:51 -06:00

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);
}
}