mirror of
https://github.com/Alee14/OpenHacknet.git
synced 2025-01-22 09:12:44 -05:00
15 lines
No EOL
262 B
C#
15 lines
No EOL
262 B
C#
using Microsoft.Xna.Framework;
|
|
|
|
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; }
|
|
}
|
|
} |