aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/api/Texture.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/crepe/api/Texture.h')
-rw-r--r--src/crepe/api/Texture.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/crepe/api/Texture.h b/src/crepe/api/Texture.h
index 6d3fb40..993f72b 100644
--- a/src/crepe/api/Texture.h
+++ b/src/crepe/api/Texture.h
@@ -1,9 +1,10 @@
#pragma once
-#include "Asset.h"
#include <SDL2/SDL_render.h>
#include <memory>
+#include "Asset.h"
+
namespace crepe {
class SdlContext;
}
@@ -21,7 +22,7 @@ private:
void load(std::unique_ptr<Asset> res);
private:
- SDL_Texture * m_texture = nullptr;
+ SDL_Texture * texture = nullptr;
friend class crepe::SdlContext;
};