diff options
Diffstat (limited to 'resource-manager/resource_fabricator.h')
-rw-r--r-- | resource-manager/resource_fabricator.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/resource-manager/resource_fabricator.h b/resource-manager/resource_fabricator.h new file mode 100644 index 0000000..3489341 --- /dev/null +++ b/resource-manager/resource_fabricator.h @@ -0,0 +1,23 @@ +#pragma once + + + +#include "resource.h" +#include "constants.h" + + +using namespace crepe; + + +class ResourceFactory { + +public: + + static Resource* create_resource(const Constants::FILE_PATH& file_path); + + +}; + + + + |