summaryrefslogtreecommitdiff
path: root/src/gnu_and_bola_brawlers/load/player_controller_configuration.lua
blob: 51e64c428fdd2be752f9b118a62881eb670b0ebf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--[[ Contains the players controllers and translate physic button (keyboard, gamepad, etc.) to a NES button name. ]]--

return {
  player1 = {
      left   = 'a',
      right  = 'd',
      up     = 'w',
      down   = 's',
      a      = 'j',
      b      = 'k',
      select = 'g',
      start  = 'h',
      quit   = 'escape',
  }
}