blob: 5fb66b3d39df0ba840a54ac2be249db6aa80cb42 (
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(game_object_id_t id, const Point & point, double rot,
double scale)
: Component(id), position(point), rotation(rot), scale(scale) {
dbg_trace();
}
|