diff options
author | heavydemon21 <nielsstunnebrink1@gmail.com> | 2024-10-23 19:56:28 +0200 |
---|---|---|
committer | heavydemon21 <nielsstunnebrink1@gmail.com> | 2024-10-23 19:56:28 +0200 |
commit | c9246515fe785563411e9170aedd0231165ab988 (patch) | |
tree | e3b713e1e1200b26861e951e0b1ac4ab64d4eab6 /src/crepe/api/Transform.cpp | |
parent | adb7dfabec4811566308cd072e0542cd7eae8cc1 (diff) |
rendering and assetmanager
Diffstat (limited to 'src/crepe/api/Transform.cpp')
-rw-r--r-- | src/crepe/api/Transform.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/crepe/api/Transform.cpp b/src/crepe/api/Transform.cpp index c83461f..4f22843 100644 --- a/src/crepe/api/Transform.cpp +++ b/src/crepe/api/Transform.cpp @@ -1,13 +1,15 @@ #include "Transform.h" +#include "Component.h" #include "api/Point.h" #include "util/log.h" +#include <cstdint> using namespace crepe::api; -Transform::Transform(Point & point, double rot, double scale) - : position(point), rotation(rot), scale(scale) { +Transform::Transform(uint32_t game_id, Point & point, double rot, double scale) + : Component(game_id), position(point), rotation(rot), scale(scale) { dbg_trace(); } Transform::~Transform() { dbg_trace(); } |