blob: 2df0d33b62074cd8415649dcb9b46bfdb860bd54 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#pragma once
/** @file mode_grid.h */
/**
* warehouse mode
*
* processes orders from the order buffer
*/
void w2_mode_grid();
extern int g_w2_transition;
void w2_crosswalk_stroll();
typedef enum { W2_ORT_NORTH, W2_ORT_EAST, W2_ORT_SOUTH, W2_ORT_WEST } w2_e_orientation;
// enum w2_e_section { mazeMode, gridMode, chargeMode } g_w2_parcour_mode;
typedef struct {
int x;
int y;
} w2_s_grid_coordinate;
extern w2_s_grid_coordinate g_w2_order[4];
|