2015-10-27 23:04:18 -04:00
|
|
|
|
using Microsoft.Xna.Framework;
|
2015-10-27 22:34:58 -04:00
|
|
|
|
|
|
|
|
|
namespace Hacknet
|
|
|
|
|
{
|
|
|
|
|
public struct ObjectState
|
|
|
|
|
{
|
|
|
|
|
public Vector2 Position { get; set; }
|
|
|
|
|
|
|
|
|
|
public float VX { get; set; }
|
|
|
|
|
|
|
|
|
|
public float VY { get; set; }
|
|
|
|
|
|
|
|
|
|
public int state { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|