diff options
Diffstat (limited to 'src/ContentManager.hpp')
-rw-r--r-- | src/ContentManager.hpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/ContentManager.hpp b/src/ContentManager.hpp new file mode 100644 index 0000000..8a7972a --- /dev/null +++ b/src/ContentManager.hpp @@ -0,0 +1,14 @@ +#ifndef CONTENTMANAGER_H +#define CONTENTMANAGER_H 1 + +#include "Content.hpp" + +class ContentManager { +public: + ContentManager() {} + ~ContentManager() {} + + bool Register(Content ctnt); +}; + +#endif |