blob: 797340d7130ccec8d73da694565b3974316df80c (
plain)
1
2
3
4
5
6
7
8
9
10
|
const KeymapConfiguration = {
MAP: {
MOVE_LEFT: ['a', 'left'],
MOVE_RIGHT: ['d', 'right'],
MOVE_UP: ['w', 'up'],
MOVE_DOWN: ['s', 'down'],
},
}
export default KeymapConfiguration
|