diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-12-18 13:22:18 +0100 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-12-18 13:22:18 +0100 |
commit | f71769f7d2e9530a49295d0c0c86c2f6add069d8 (patch) | |
tree | dcd433df89cdca24f2511be9d5ee85d4d26299b3 /src/crepe/facade/Texture.cpp | |
parent | ba99bcbac33d05bc2067c9211c0fe453b2930a8d (diff) |
process feedback
Diffstat (limited to 'src/crepe/facade/Texture.cpp')
-rw-r--r-- | src/crepe/facade/Texture.cpp | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/crepe/facade/Texture.cpp b/src/crepe/facade/Texture.cpp index 23a9c8e..cd06439 100644 --- a/src/crepe/facade/Texture.cpp +++ b/src/crepe/facade/Texture.cpp @@ -1,10 +1,10 @@ #include "../util/dbg.h" -#include "facade/SDLContext.h" -#include "manager/Mediator.h" +#include "../facade/SDLContext.h" +#include "../manager/Mediator.h" +#include "../types.h" +#include "../Resource.h" -#include "Resource.h" #include "Texture.h" -#include "types.h" using namespace crepe; using namespace std; @@ -23,6 +23,8 @@ Texture::~Texture() { } 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(); } + |