OpenHacknet/ObjectState.cs

15 lines
262 B
C#
Raw Normal View History

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; }
}
}