mirror of https://github.com/nmlgc/ReC98.git
6 lines
70 B
C++
6 lines
70 B
C++
|
// Direction types
|
||
|
enum x_direction_t {
|
||
|
X_RIGHT = 0,
|
||
|
X_LEFT = 1,
|
||
|
};
|