summaryrefslogtreecommitdiffstats
path: root/src/AssetManager.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/AssetManager.hpp')
-rw-r--r--src/AssetManager.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/AssetManager.hpp b/src/AssetManager.hpp
index 7f6c4fb..6fe2eab 100644
--- a/src/AssetManager.hpp
+++ b/src/AssetManager.hpp
@@ -6,7 +6,6 @@
#include <functional>
#include <memory>
-#include <GL/glew.h>
#include <glm/vec4.hpp>
#include <glm/vec3.hpp>
#include <glm/mat4x4.hpp>
@@ -15,6 +14,7 @@
#include "Block.hpp"
#include "TextureAtlas.hpp"
#include "Shader.hpp"
+#include "Gal.hpp"
enum FaceDirection {
down,
@@ -189,7 +189,7 @@ namespace AssetManager {
AssetTreeNode *GetAssetByAssetName(const std::string &assetName);
- GLuint GetTextureAtlasId();
+ std::shared_ptr<Gal::Texture> GetTextureAtlas();
TextureCoord GetTexture(const std::string assetName);
};