From 779fd068b6aadef909aefdd25d6ec4086300dde2 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Tue, 6 Aug 2024 10:32:26 -0400 Subject: easier initializaton --- include/components/texture.hpp | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'include/components/texture.hpp') diff --git a/include/components/texture.hpp b/include/components/texture.hpp index 14253f1..ea08c77 100644 --- a/include/components/texture.hpp +++ b/include/components/texture.hpp @@ -4,11 +4,13 @@ #include "components/point.hpp" #include "window.hpp" +#include + class Texture { public: - Texture(const char *path) { - tex = sdl2LoadTexture(path); + Texture(std::string path) { + tex = sdl2LoadTexture(path.c_str()); if (tex) SDL_QueryTexture(tex, nullptr, nullptr, &w, &h); } @@ -27,7 +29,7 @@ public: } Point dim() const noexcept { - return Point {static_cast(w), static_cast(h)}; + return Point(static_cast(w), static_cast(h)); } private: -- cgit v1.2.3