summaryrefslogtreecommitdiffstats
path: root/src/AssetManager.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/AssetManager.hpp')
-rw-r--r--src/AssetManager.hpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/AssetManager.hpp b/src/AssetManager.hpp
index 3ecff25..3b4ad2f 100644
--- a/src/AssetManager.hpp
+++ b/src/AssetManager.hpp
@@ -14,6 +14,7 @@
#include "Vector.hpp"
#include "Block.hpp"
#include "TextureAtlas.hpp"
+#include "Shader.hpp"
enum FaceDirection {
down,
@@ -160,6 +161,10 @@ struct AssetTexture : Asset {
size_t id;
};
+struct AssetShader : Asset {
+ std::unique_ptr<NewShader> shader;
+};
+
namespace AssetManager {
void InitAssetManager();