Client LuaCsForBarotrauma
ISteerable.cs
1 using Microsoft.Xna.Framework;
2 
3 namespace Barotrauma
4 {
5  interface ISteerable
6  {
7  Vector2 Steering
8  {
9  get;
10  set;
11  }
12 
13  Vector2 Velocity
14  {
15  get;
16  }
17 
18  Vector2 SimPosition
19  {
20  get;
21  }
22 
23  Vector2 WorldPosition
24  {
25  get;
26  }
27  }
28 }