fix directions constants

This commit is contained in:
matixezor 2021-04-12 19:05:04 +02:00
parent f0359f53c8
commit 8e9af8f0b3

View File

@ -79,6 +79,6 @@ ACTIONS = {
3: [pg.K_a, pg.K_w]
}
DIRECTIONS_X = (-1, 0, 1, 0)
DIRECTIONS_Y = (0, -1, 0, 1)
DIRECTIONS_SIDE = (3, 0, 1, 2)
DIRECTIONS_X = (0, -1, 0, 1)
DIRECTIONS_Y = (-1, 0, 1, 0)
DIRECTIONS_SIDE = (0, 3, 2, 1)