This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Key mapping interface | |
export interface KeyMapping { | |
key: string; // Human-readable key name | |
keyButton: string; // Value sent from Lua | |
eventCode?: string | null; // JavaScript event listener code | |
displayName?: string; // Display name for UI | |
} | |
// Complete mapping of all keys | |
export const keyMappings: KeyMapping[] = [ |