Changed *.h files to *.hpp

This commit is contained in:
Kayne Ruse
2013-05-01 21:11:04 +10:00
parent cf82679109
commit 63aa248056
21 changed files with 47 additions and 47 deletions
+9
View File
@@ -0,0 +1,9 @@
#ifndef DEFINES_HPP_
#define DEFINES_HPP_
enum class Direction {
NORTH = 1, SOUTH = 2,
EAST = 3, WEST = 4
};
#endif