diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-12-20 11:12:44 +0100 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-12-20 11:12:44 +0100 |
commit | 44741315c6d2df9bd6591c19ea189163e5c70add (patch) | |
tree | bc4d65efbd0c78cf704db8afd1c08c64c04996c0 /src/crepe/facade | |
parent | 5b1a26a13d8a2f44a7ef1fa8c0fc609c37adc28b (diff) | |
parent | 226e01dcd77821d1fccdf42074606ce80528637e (diff) |
merge loek/scripts
Diffstat (limited to 'src/crepe/facade')
-rw-r--r-- | src/crepe/facade/Texture.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/crepe/facade/Texture.cpp b/src/crepe/facade/Texture.cpp index 9a10f9b..06caa54 100644 --- a/src/crepe/facade/Texture.cpp +++ b/src/crepe/facade/Texture.cpp @@ -1,7 +1,8 @@ -#include "../util/dbg.h" +#include "../Resource.h" +#include "../facade/SDLContext.h" #include "../manager/Mediator.h" #include "../types.h" -#include "../Resource.h" +#include "../util/dbg.h" #include "SDLContext.h" #include "Texture.h" @@ -27,4 +28,3 @@ const ivec2 & Texture::get_size() const noexcept { return this->size; } const float & Texture::get_ratio() const noexcept { return this->aspect_ratio; } SDL_Texture * Texture::get_img() const noexcept { return this->texture.get(); } - |