aboutsummaryrefslogtreecommitdiff
path: root/resource-manager/resource_fabricator.h
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-10-23 21:27:01 +0200
committerLoek Le Blansch <loek@pipeframe.xyz>2024-10-23 21:27:01 +0200
commit080ad535e6fc6666b919b1a21b6986aaf9b678eb (patch)
treef4d96cb68769ddd06087977ad7d26c3fd31ff4e8 /resource-manager/resource_fabricator.h
parentde356f60b91fab37b1456992dc66ada8bd8e4dd7 (diff)
initial nitpicking
Diffstat (limited to 'resource-manager/resource_fabricator.h')
-rw-r--r--resource-manager/resource_fabricator.h32
1 files changed, 0 insertions, 32 deletions
diff --git a/resource-manager/resource_fabricator.h b/resource-manager/resource_fabricator.h
deleted file mode 100644
index cb6929f..0000000
--- a/resource-manager/resource_fabricator.h
+++ /dev/null
@@ -1,32 +0,0 @@
-#pragma once
-
-
-
-#include "resource.h"
-#include "constants.h"
-#include <SDL_render.h>
-#include <string>
-
-
-
-using namespace crepe;
-
-
-class ResourceFactory {
-
-public:
-
- template<typename T>
- static Resource* create_resource(const Constants::FILE_PATH& file_path){
-
- return new T(convert_file_to_string(file_path));
- }
-
-private:
- static std::string convert_file_to_string(const std::string& path);
-
-};
-
-
-
-