aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/Force.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/crepe/Force.h')
-rw-r--r--src/crepe/Force.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/crepe/Force.h b/src/crepe/Force.h
new file mode 100644
index 0000000..a121ec2
--- /dev/null
+++ b/src/crepe/Force.h
@@ -0,0 +1,17 @@
+#pragma once
+
+#include "Component.h"
+#include <cstdint>
+#include <utility>
+
+namespace crepe {
+
+class Force : public Component {
+public:
+ Force(uint32_t gameObjectId, uint32_t forceMagnitude, uint32_t direction);
+
+ int32_t force_x;
+ int32_t force_y;
+};
+
+} // namespace crepe