SNAKE_STM32F3
Loading...
Searching...
No Matches
2dspace.h
Go to the documentation of this file.
1
11
12#ifndef INC_2DSPACE_H_
13#define INC_2DSPACE_H_
14
26
30typedef struct
31{
32 int x;
33 int y;
34}vec2_t;
35
36#endif /* SRC_2DSPACE_H_ */
direction_t
Movement direction type.
Definition 2dspace.h:19
@ DOWN
Definition 2dspace.h:21
@ UP
Definition 2dspace.h:20
@ NONE
Definition 2dspace.h:24
@ LEFT
Definition 2dspace.h:22
@ RIGHT
Definition 2dspace.h:23
X-Y position type.
Definition 2dspace.h:31
int x
Definition 2dspace.h:32
int y
Definition 2dspace.h:33