aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/Sprite.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/crepe/Sprite.cpp')
-rw-r--r--src/crepe/Sprite.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crepe/Sprite.cpp b/src/crepe/Sprite.cpp
index a5a5e68..7f5bca7 100644
--- a/src/crepe/Sprite.cpp
+++ b/src/crepe/Sprite.cpp
@@ -5,4 +5,4 @@
using namespace crepe;
using namespace std;
-Sprite::Sprite(string path) : path(path) {}
+Sprite::Sprite(uint32_t gameObjectId, string path) : Component(gameObjectId), path(path) {}