blob: 2c39523fdc36133e06305d557ebf1cae7c8a3cc5 (
plain)
1
2
3
4
5
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) {}
|