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