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.h
T
2013-04-29 17:25:56 +10:00

10 lines
116 B
C

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