summary refs log tree commit diff
path: root/src/Assets.hpp
diff options
context:
space:
mode:
authorMel <einebeere@gmail.com>2023-07-08 03:25:44 +0200
committerMel <einebeere@gmail.com>2023-07-08 03:25:44 +0200
commitfe2baedc760c2f29e2c720f6b1132a2de33c5430 (patch)
treedfbe1c72a17805a3cab6e0d47433e9021890c9ca /src/Assets.hpp
parent41fbca10f6c6cdd9c1623f1347e7ecb40f5e7f59 (diff)
downloadmeowcraft-fe2baedc760c2f29e2c720f6b1132a2de33c5430.tar.zst
meowcraft-fe2baedc760c2f29e2c720f6b1132a2de33c5430.zip
Use own size types
Diffstat (limited to 'src/Assets.hpp')
-rw-r--r--src/Assets.hpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/Assets.hpp b/src/Assets.hpp
index 641125a..9ff5c42 100644
--- a/src/Assets.hpp
+++ b/src/Assets.hpp
@@ -1,17 +1,19 @@
 #pragma once
 
+#include "Common/Sizes.hpp"
+
 namespace MC::Assets {
 
 namespace Shaders {
 
-extern const char* vertex;
-extern const char* fragment;
+extern const Char* vertex;
+extern const Char* fragment;
 
 }
 
 namespace Images {
 
-extern const char* atlas;
+extern const Char* atlas;
 
 }