diff options
-rw-r--r-- | src/crepe/api/Transform.cpp | 2 | ||||
-rw-r--r-- | src/crepe/api/Transform.h | 1 |
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 * |