OpenHacknet/DelayedInput.cs
2015-10-27 23:04:18 -04:00

13 lines
No EOL
237 B
C#

namespace Hacknet
{
public struct DelayedInput
{
public double Delay { get; set; }
public InputMap inputs { get; set; }
public float xPos { get; set; }
public float yPos { get; set; }
}
}