aboutsummaryrefslogtreecommitdiff
path: root/src/example/physics.cpp
diff options
context:
space:
mode:
authormax-001 <maxsmits21@kpnmail.nl>2024-11-21 09:46:06 +0100
committermax-001 <maxsmits21@kpnmail.nl>2024-11-21 09:46:06 +0100
commit7588439db08a671764345764eb05bcb853a90d76 (patch)
tree6847d8aa1b1b911dde55d529330c7144c6fafbf0 /src/example/physics.cpp
parentba3b97467ffa9df03d74e87bd567e3dfc521df05 (diff)
parent1cc120a0031cfc19c35240da8390d9129b4d75a3 (diff)
Merge remote-tracking branch 'origin/master' into max/doxygen
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;
-}