1local button = {}
 2
 3button.PAD_UP    = { keyboard = 265, xbox = 1,  playstation = 1  }  -- Key: Arrow Up
 4button.PAD_DOWN  = { keyboard = 264, xbox = 3,  playstation = 2  }  -- Key: Arrow Down
 5button.PAD_LEFT  = { keyboard = 263, xbox = 4,  playstation = 3  }  -- Key: Arrow Left
 6button.PAD_RIGHT = { keyboard = 262, xbox = 2,  playstation = 4  }  -- Key: Arrow Right
 7
 8button.A         = { keyboard = 65,  xbox = 7,  playstation = 7  }  -- Key: A
 9button.B         = { keyboard = 83,  xbox = 6,  playstation = 6  }  -- Key: S
10button.X         = { keyboard = 81,  xbox = 8,  playstation = 8  }  -- Key: Q
11button.Y         = { keyboard = 87,  xbox = 5,  playstation = 5  }  -- Key: W
12
13button.SELECT    = { keyboard = 68,  xbox = 13, playstation = 13 }  -- Key: D
14button.START     = { keyboard = 69,  xbox = 15, playstation = 15 }  -- Key: E
15
16return button