pacman/lib/Direction.hpp
Corentin Jabot 164db664ef Use VCPKG and reorganization
* Remove non-pacman exercises.
* Use vcpkg instead of conan ( make vcpkg a submodule)
* Merge the readmem these will need to be improve later
2021-05-10 14:58:00 +02:00

13 lines
148 B
C++

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