mirror of
https://github.com/Alee14/OpenHacknet.git
synced 2025-01-22 09:12:44 -05:00
10 lines
No EOL
187 B
C#
10 lines
No EOL
187 B
C#
using Microsoft.Xna.Framework.Input;
|
|
|
|
namespace Hacknet
|
|
{
|
|
public struct KeyboardAndGamePad
|
|
{
|
|
public KeyboardState keyboard;
|
|
public GamePadState gamepad;
|
|
}
|
|
} |