diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2014-09-23 00:13:05 +0200 |
---|---|---|
committer | Matthias Schiffer <mschiffer@universe-factory.net> | 2014-09-23 00:13:05 +0200 |
commit | 11e77a9d65972c8e59aefd72419dfcf9036e9f6a (patch) | |
tree | 03288809e9a592849e881d6f3baae2eb41bee5cb /src/model/Direction.hpp | |
parent | c9b41bc1022c75ac6da84f4fa503dd8231a96cf2 (diff) | |
download | rpgedit-11e77a9d65972c8e59aefd72419dfcf9036e9f6a.tar rpgedit-11e77a9d65972c8e59aefd72419dfcf9036e9f6a.zip |
Allow player movement
Diffstat (limited to 'src/model/Direction.hpp')
-rw-r--r-- | src/model/Direction.hpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/model/Direction.hpp b/src/model/Direction.hpp index c1cb269..db288f6 100644 --- a/src/model/Direction.hpp +++ b/src/model/Direction.hpp @@ -27,9 +27,17 @@ #pragma once +namespace RPGEdit { + +namespace Model { + enum Direction { NORTH, EAST, SOUTH, WEST, }; + +} + +} |