summary refs log tree commit diff
path: root/src/Shader/ShaderSources.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Shader/ShaderSources.hpp')
-rw-r--r--src/Shader/ShaderSources.hpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/Shader/ShaderSources.hpp b/src/Shader/ShaderSources.hpp
new file mode 100644
index 0000000..bd413b6
--- /dev/null
+++ b/src/Shader/ShaderSources.hpp
@@ -0,0 +1,13 @@
+#pragma once
+
+namespace MC::ShaderSources {
+
+constexpr const char* vertex_shader =
+#include "Generated/vertex.glsl.includable"
+;
+
+constexpr const char* fragment_shader =
+#include "Generated/fragment.glsl.includable"
+;
+
+}
\ No newline at end of file