aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/api/Sprite.cpp
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-11-12 15:11:51 +0100
committerLoek Le Blansch <loek@pipeframe.xyz>2024-11-12 15:11:51 +0100
commit33454c2c8d8c0abdfd405608af4e6cd53a25e7c4 (patch)
treeef5131afc629815e993775423602a6e8af5fcb5f /src/crepe/api/Sprite.cpp
parent067247360d68042ad5466b802399338c14d7dc58 (diff)
parent656df6ddd6b5231705798540c347efeebf8ac8a9 (diff)
merge `master` into `loek/cleanup`
Diffstat (limited to 'src/crepe/api/Sprite.cpp')
-rw-r--r--src/crepe/api/Sprite.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/crepe/api/Sprite.cpp b/src/crepe/api/Sprite.cpp
index 88a442b..6f0433f 100644
--- a/src/crepe/api/Sprite.cpp
+++ b/src/crepe/api/Sprite.cpp
@@ -1,7 +1,7 @@
-#include <cstdint>
#include <memory>
#include "../util/log.h"
+#include "facade/SDLContext.h"
#include "Component.h"
#include "Sprite.h"
@@ -10,13 +10,16 @@
using namespace std;
using namespace crepe;
-Sprite::Sprite(game_object_id_t id, shared_ptr<Texture> image,
+Sprite::Sprite(game_object_id_t id, const shared_ptr<Texture> image,
const Color & color, const FlipSettings & flip)
: Component(id),
color(color),
flip(flip),
sprite_image(image) {
dbg_trace();
+
+ this->sprite_rect.w = sprite_image->get_width();
+ this->sprite_rect.h = sprite_image->get_height();
}
Sprite::~Sprite() { dbg_trace(); }