You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
UWPHook/UWPHook/KeyboardToController.cs

45 lines
862 B
C#

using System.Collections.Generic;
using ScpDriverInterface;
namespace UWPHook
{
public class KeyboardToController
{
private string _game;
public string Game
{
get { return _game; }
set { _game = value; }
}
private List<KeyToXboxButton> _listButtons;
public List<KeyToXboxButton> ListButtons
{
get { return _listButtons; }
set { _listButtons = value; }
}
}
public class KeyToXboxButton
{
private string _key;
public string Key
{
get { return _key; }
set { _key = value; }
}
private X360Buttons _X360Button;
public X360Buttons x360Buttons
{
get { return _X360Button; }
set { _X360Button = value; }
}
}
}