fix directions constants
This commit is contained in:
parent
f0359f53c8
commit
8e9af8f0b3
@ -79,6 +79,6 @@ ACTIONS = {
|
|||||||
3: [pg.K_a, pg.K_w]
|
3: [pg.K_a, pg.K_w]
|
||||||
}
|
}
|
||||||
|
|
||||||
DIRECTIONS_X = (-1, 0, 1, 0)
|
DIRECTIONS_X = (0, -1, 0, 1)
|
||||||
DIRECTIONS_Y = (0, -1, 0, 1)
|
DIRECTIONS_Y = (-1, 0, 1, 0)
|
||||||
DIRECTIONS_SIDE = (3, 0, 1, 2)
|
DIRECTIONS_SIDE = (0, 3, 2, 1)
|
||||||
|
Loading…
Reference in New Issue
Block a user