aboutsummaryrefslogtreecommitdiff
path: root/src/example/physics.cpp
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-11-13 13:10:25 +0100
committerLoek Le Blansch <loek@pipeframe.xyz>2024-11-13 13:10:25 +0100
commitfac06d488e635583307cd4a916a611500fb64c16 (patch)
treef62f79cc8ba540498d5dfa1deb4379469738a682 /src/example/physics.cpp
parent9d58e897fb68ab8dd001a5085cde2fae4634c274 (diff)
cleanup + fix examples
Diffstat (limited to 'src/example/physics.cpp')
-rw-r--r--src/example/physics.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/example/physics.cpp b/src/example/physics.cpp
index 848f857..2ebf779 100644
--- a/src/example/physics.cpp
+++ b/src/example/physics.cpp
@@ -9,9 +9,11 @@ using namespace crepe;
using namespace std;
int main(int argc, char * argv[]) {
- GameObject * game_object;
- game_object = new GameObject(0, "Name", "Tag", Vector2{0, 0}, 0, 0);
- game_object->add_component<Rigidbody>(Rigidbody::Data{
+ 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,
@@ -19,6 +21,5 @@ int main(int argc, char * argv[]) {
.use_gravity = true,
.bounce = false,
});
- delete game_object;
return 0;
}