Files
LuaCsForBarotraumaEP/Subsurface/Source/Characters/AI/ISteerable.cs

26 lines
324 B
C#

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