aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/Transform.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/crepe/Transform.h')
-rw-r--r--src/crepe/Transform.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/crepe/Transform.h b/src/crepe/Transform.h
new file mode 100644
index 0000000..c72ebc4
--- /dev/null
+++ b/src/crepe/Transform.h
@@ -0,0 +1,16 @@
+#pragma once
+
+#include "Component.h"
+
+namespace crepe {
+
+class Transform : public Component {
+public:
+ Transform(int mass, int gravityScale, int bodyType);
+
+ int mass;
+ int gravity_scale;
+ int body_type;
+};
+
+} // namespace crepe