diff options
Diffstat (limited to 'src/systems/mapping.h')
| -rw-r--r-- | src/systems/mapping.h | 19 |
1 files changed, 19 insertions, 0 deletions
| diff --git a/src/systems/mapping.h b/src/systems/mapping.h new file mode 100644 index 0000000..53d054b --- /dev/null +++ b/src/systems/mapping.h | |||
| @@ -0,0 +1,19 @@ | |||
| 1 | #ifndef MAPPING_H_33FC2294 | ||
| 2 | #define MAPPING_H_33FC2294 | ||
| 3 | |||
| 4 | #include "system.h" | ||
| 5 | |||
| 6 | class MappingSystem : public System { | ||
| 7 | public: | ||
| 8 | |||
| 9 | MappingSystem(Game& game) : System(game) | ||
| 10 | { | ||
| 11 | } | ||
| 12 | |||
| 13 | void render(Texture& texture); | ||
| 14 | |||
| 15 | void loadMap(size_t mapId); | ||
| 16 | |||
| 17 | }; | ||
| 18 | |||
| 19 | #endif /* end of include guard: MAPPING_H_33FC2294 */ | ||
