pacman/lib/Direction.hpp

13 lines
148 B
C++
Raw Normal View History

2020-11-27 13:10:09 +00:00
#ifndef PACMAN_DIRECTION_H
#define PACMAN_DIRECTION_H
enum class Direction {
NONE,
LEFT,
RIGHT,
UP,
DOWN
};
#endif //PACMAN_DIRECTION_H