aboutsummaryrefslogtreecommitdiff
path: root/src/example/physics.cpp
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-11-20 22:04:09 +0100
committerLoek Le Blansch <loek@pipeframe.xyz>2024-11-20 22:04:09 +0100
commitdff52c72a9199ceea4eaf67c270916ae11238b45 (patch)
treec5d298bb0abcdece06060067789fb303e6c8897f /src/example/physics.cpp
parentbfb4dffccec0a902586927c41b2454c8ddacd9e3 (diff)
parent1cc120a0031cfc19c35240da8390d9129b4d75a3 (diff)
Merge branch 'master' into loek/scripts
Diffstat (limited to 'src/example/physics.cpp')
-rw-r--r--src/example/physics.cpp24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/example/physics.cpp b/src/example/physics.cpp
deleted file mode 100644
index ad663a0..0000000
--- a/src/example/physics.cpp
+++ /dev/null
@@ -1,24 +0,0 @@
-#include <crepe/Component.h>
-#include <crepe/ComponentManager.h>
-#include <crepe/api/GameObject.h>
-#include <crepe/api/Rigidbody.h>
-#include <crepe/api/Transform.h>
-#include <crepe/system/PhysicsSystem.h>
-
-using namespace crepe;
-using namespace std;
-
-int main(int argc, char * argv[]) {
- ComponentManager mgr{};
-
- GameObject game_object = mgr.new_object("Name", "Tag", Vector2{0, 0}, 0, 0);
- game_object.add_component<Rigidbody>(Rigidbody::Data{
- .mass = 1,
- .gravity_scale = 1,
- .body_type = Rigidbody::BodyType::DYNAMIC,
- .constraints = {0, 0, 0},
- .use_gravity = true,
- .bounce = false,
- });
- return 0;
-}