blob: be1769e2724d336c5565c8d0f82af77b7cac963b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include <cstdint>
#include "util/log.h"
#include "Transform.h"
using namespace crepe;
Transform::Transform(uint32_t game_id, const Point & point, double rot,
double scale)
: Component(game_id), position(point), rotation(rot), scale(scale) {
dbg_trace();
}
|