aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/api/Transform.h
blob: d4dfafc49ca50bb3fe02ce8f6e99b2ac5997208d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once

#include "api/Component.h"
#include "api/Point.h"
namespace crepe::api {

class Transform : public Component {
public:
	Point position; // Translation (shift)
	double rotation; // Rotation, in radians
	double scale; // Multiplication factoh
};
} // namespace crepe::api