blob: 9645d039c6d408af05239ea82c972672317ed349 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include "util/log.h"
#include "Transform.h"
using namespace crepe;
Transform::Transform(const Component::Data & data, const Vector2 & point,
double rotation, double scale)
: Component(data),
position(point),
rotation(rotation),
scale(scale) {
dbg_trace();
}
|