]> git.localhorst.tv Git - tacos.git/blobdiff - src/app/assets.hpp
basic floor idea
[tacos.git] / src / app / assets.hpp
diff --git a/src/app/assets.hpp b/src/app/assets.hpp
new file mode 100644 (file)
index 0000000..4c4bcdd
--- /dev/null
@@ -0,0 +1,27 @@
+#ifndef TACOS_APP_ASSETS_HPP_
+#define TACOS_APP_ASSETS_HPP_
+
+#include <string>
+
+
+namespace tacos {
+
+class Config;
+class Shader;
+
+class AssetLoader {
+
+public:
+       explicit AssetLoader(const Config &);
+
+       Shader LoadVertexShader(const std::string &name) const;
+       Shader LoadFragmentShader(const std::string &name) const;
+
+private:
+       const Config &config;
+
+};
+
+}
+
+#endif