Files
LuaCsForBarotraumaEP/Subsurface/Source/Characters/AI/ISteerable.cs
2016-01-06 22:50:55 +02:00

28 lines
326 B
C#

using Microsoft.Xna.Framework;
namespace Barotrauma
{
interface ISteerable
{
Vector2 Steering
{
get;
set;
}
Vector2 Velocity
{
get;
}
Vector2 SimPosition
{
get;
}
}
}