summary refs log tree commit diff
path: root/src/Assets.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Assets.cpp')
-rw-r--r--src/Assets.cpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/Assets.cpp b/src/Assets.cpp
new file mode 100644
index 0000000..ffd09ec
--- /dev/null
+++ b/src/Assets.cpp
@@ -0,0 +1,17 @@
+#include "Assets.hpp"
+
+namespace MC::Assets {
+
+const char* Shaders::fragment =
+#include "../assets/generated/shaders/fragment.glsl.includable"
+;
+
+const char* Shaders::vertex =
+#include "../assets/generated/shaders/vertex.glsl.includable"
+;
+
+const char* Images::atlas =
+#include "../assets/generated/images/atlas.ppm.includable"
+;
+
+}
\ No newline at end of file