diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-11-07 20:03:14 +0100 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-11-07 20:03:14 +0100 |
commit | 3d2428af8e8d9d49b4ade52d4806a7dae4cf1ab8 (patch) | |
tree | 30d908c427ff9b4ee53402fbf52cb15704e58623 /src/crepe/api/Sprite.cpp | |
parent | fde229c24dcbd1ed844880a35eabddb88279802b (diff) |
merge #25 + nitpicking
Diffstat (limited to 'src/crepe/api/Sprite.cpp')
-rw-r--r-- | src/crepe/api/Sprite.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/crepe/api/Sprite.cpp b/src/crepe/api/Sprite.cpp index 7e810b5..d3465c7 100644 --- a/src/crepe/api/Sprite.cpp +++ b/src/crepe/api/Sprite.cpp @@ -10,8 +10,8 @@ using namespace std; using namespace crepe; -Sprite::Sprite(game_object_id_t id, shared_ptr<Texture> image, const Color & color, - const FlipSettings & flip) +Sprite::Sprite(game_object_id_t id, shared_ptr<Texture> image, + const Color & color, const FlipSettings & flip) : Component(id), color(color), flip(flip), sprite_image(image) { dbg_trace(); } |