From f71769f7d2e9530a49295d0c0c86c2f6add069d8 Mon Sep 17 00:00:00 2001 From: Loek Le Blansch Date: Wed, 18 Dec 2024 13:22:18 +0100 Subject: process feedback --- src/crepe/facade/Texture.cpp | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'src/crepe/facade/Texture.cpp') 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(); } + -- cgit v1.2.3