snake-cpp-game/include/Direction.h

7 lines
111 B
C

#ifndef DIRECTION_H
#define DIRECTION_H
enum class Direction { UP, DOWN, LEFT, RIGHT };
#endif //DIRECTION_H