First commit

This commit is contained in:
Regalis
2015-05-25 01:04:03 +03:00
commit fadb89ae9e
320 changed files with 32186 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
using Microsoft.Xna.Framework;
namespace Subsurface
{
interface ISteerable
{
Vector2 Steering
{
get;
set;
}
Vector2 Velocity
{
get;
}
Vector2 Position
{
get;
}
}
}