pacman/lib/Direction.hpp
2021-06-10 14:42:51 +02:00

10 lines
78 B
C++

#pragma once
enum class Direction {
NONE,
LEFT,
RIGHT,
UP,
DOWN
};