28 lines
326 B
C#
28 lines
326 B
C#
using Microsoft.Xna.Framework;
|
|
|
|
namespace Barotrauma
|
|
{
|
|
interface ISteerable
|
|
{
|
|
|
|
Vector2 Steering
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
Vector2 Velocity
|
|
{
|
|
get;
|
|
}
|
|
|
|
Vector2 SimPosition
|
|
{
|
|
get;
|
|
}
|
|
|
|
|
|
|
|
}
|
|
}
|