This repository has been archived on 2026-04-30. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Tortuga/client/defines.hpp
T
2013-05-02 20:28:12 +10:00

10 lines
120 B
C++

#ifndef DEFINES_HPP_
#define DEFINES_HPP_
enum class Direction {
NORTH = 1, SOUTH = 2,
EAST = 3, WEST = 4
};
#endif