aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/facade/Texture.cpp
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-12-18 14:21:09 +0100
committerLoek Le Blansch <loek@pipeframe.xyz>2024-12-18 14:21:09 +0100
commit5605d438a242a6252f7a27ce772eb092b62d78ae (patch)
tree4b9db3d74a921389d4fdf14c06f006334621bfca /src/crepe/facade/Texture.cpp
parentcff284cedde9f0cc133ff2855557299ce1d8083c (diff)
`make format`
Diffstat (limited to 'src/crepe/facade/Texture.cpp')
-rw-r--r--src/crepe/facade/Texture.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/crepe/facade/Texture.cpp b/src/crepe/facade/Texture.cpp
index cd06439..6fb22e1 100644
--- a/src/crepe/facade/Texture.cpp
+++ b/src/crepe/facade/Texture.cpp
@@ -1,8 +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 "Texture.h"
@@ -27,4 +27,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(); }
-