summaryrefslogtreecommitdiff
path: root/stdlib/button.lua
blob: 7a656e02dbffb0de8067a449ef6d8d0c1628d90e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
local button = {}

button.PAD_UP    = 87  -- Key: W
button.PAD_DOWN  = 83  -- Key: S
button.PAD_LEFT  = 65  -- Key: A
button.PAD_RIGHT = 68  -- Key: D

button.A         = 76  -- Key: L
button.B         = 80  -- Key: P
button.X         = 75  -- Key: K
button.Y         = 79  -- Key: O

return button