mirror of
https://github.com/hykilpikonna/AquaDX.git
synced 2026-08-09 20:51:29 -05:00
* [+] Maimoller IO * Optimize * Optimize * Optimize * Remove extra file * Fix * Remove * commit * touch * Fix * libadxhid * KeyMap * reword * AdxKeyMap => IOKeyMap * fix: span * 按需应用 JvsSwitchHook --------- Co-authored-by: Clansty <i@gao4.pw>
12 lines
220 B
C#
12 lines
220 B
C#
namespace AquaMai.Config.Types;
|
|
|
|
public enum IOKeyMap
|
|
{
|
|
None = 0,
|
|
Select, // Trigger Select1P or Select2P based on which player the controller is connected as
|
|
Select1P,
|
|
Select2P,
|
|
Service,
|
|
Test,
|
|
}
|