aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/Transform.h
diff options
context:
space:
mode:
authorjaroWMR <jarorutjes07@gmail.com>2024-10-20 12:59:18 +0200
committerjaroWMR <jarorutjes07@gmail.com>2024-10-20 12:59:18 +0200
commit0f03cdbf23f57116b7664a7c98c4605fd69bb961 (patch)
tree6e592bd7e94cd5954a8a49209de815fc0ae0becd /src/crepe/Transform.h
parent016070d47f2fff8cfdd49cc0bdf65c14ef922c94 (diff)
updated particle system
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