diff options
Diffstat (limited to 'src/crepe/Transform.cpp')
-rw-r--r-- | src/crepe/Transform.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/crepe/Transform.cpp b/src/crepe/Transform.cpp new file mode 100644 index 0000000..2c39523 --- /dev/null +++ b/src/crepe/Transform.cpp @@ -0,0 +1,6 @@ +#include "Transform.h" + +using namespace crepe; + +Transform::Transform(uint32_t gameObjectId,Position position, int rotation, int scale) + : Component(gameObjectId), postion(postion), rotation(rotation), scale(scale) {} |