aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormax-001 <maxsmits21@kpnmail.nl>2024-11-07 12:25:17 +0100
committermax-001 <maxsmits21@kpnmail.nl>2024-11-07 12:25:17 +0100
commitcd0940f72e1e0d4abb0bc1ef5fb481b389a1f77a (patch)
tree9a42cf26924697eb2ecb6750bc4225a4e27c4e6a
parentd2ba8b538b137d104fc4751142fe58888d59d541 (diff)
Removed destructor
-rw-r--r--src/crepe/api/Transform.cpp2
-rw-r--r--src/crepe/api/Transform.h1
2 files changed, 0 insertions, 3 deletions
diff --git a/src/crepe/api/Transform.cpp b/src/crepe/api/Transform.cpp
index 5274b01..be1769e 100644
--- a/src/crepe/api/Transform.cpp
+++ b/src/crepe/api/Transform.cpp
@@ -11,5 +11,3 @@ Transform::Transform(uint32_t game_id, const Point & point, double rot,
: Component(game_id), position(point), rotation(rot), scale(scale) {
dbg_trace();
}
-
-Transform::~Transform() { dbg_trace(); }
diff --git a/src/crepe/api/Transform.h b/src/crepe/api/Transform.h
index 02125ef..69ea48f 100644
--- a/src/crepe/api/Transform.h
+++ b/src/crepe/api/Transform.h
@@ -23,7 +23,6 @@ public:
* \param scale The scale of the GameObject
*/
Transform(uint32_t id, const Point & point, double rot, double scale);
- ~Transform();
/**
* \brief Get the maximum number of instances for this component
*