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