diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-12-19 13:41:02 +0100 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-12-19 13:41:02 +0100 |
commit | 88d84763147fbd6bcc087f15a7460566a009cdb2 (patch) | |
tree | e0053c1f10908deba43b87e212df5381645b8979 /src/crepe/facade | |
parent | bd36c2e73950f4e178f633b601216974c5053e7d (diff) |
fix header ordering
Diffstat (limited to 'src/crepe/facade')
-rw-r--r-- | src/crepe/facade/Texture.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crepe/facade/Texture.cpp b/src/crepe/facade/Texture.cpp index cd06439..9a10f9b 100644 --- a/src/crepe/facade/Texture.cpp +++ b/src/crepe/facade/Texture.cpp @@ -1,9 +1,9 @@ #include "../util/dbg.h" -#include "../facade/SDLContext.h" #include "../manager/Mediator.h" #include "../types.h" #include "../Resource.h" +#include "SDLContext.h" #include "Texture.h" using namespace crepe; |