2015-02-01 10:38:55 -07:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
2015-07-06 19:30:51 -06:00
|
|
|
|
namespace TrueCraft.API.Physics
|
2015-02-01 10:38:55 -07:00
|
|
|
|
{
|
|
|
|
|
public interface IAABBEntity : IPhysicsEntity
|
|
|
|
|
{
|
|
|
|
|
BoundingBox BoundingBox { get; }
|
|
|
|
|
Size Size { get; }
|
|
|
|
|
|
|
|
|
|
void TerrainCollision(Vector3 collisionPoint, Vector3 collisionDirection);
|
|
|
|
|
}
|
|
|
|
|
}
|