From de356f60b91fab37b1456992dc66ada8bd8e4dd7 Mon Sep 17 00:00:00 2001 From: jaroWMR Date: Wed, 23 Oct 2024 20:06:28 +0200 Subject: fixed merge issue --- src/example/Physics.cpp | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'src/example') diff --git a/src/example/Physics.cpp b/src/example/Physics.cpp index 6499fb0..ee75c5c 100644 --- a/src/example/Physics.cpp +++ b/src/example/Physics.cpp @@ -1,7 +1,7 @@ #include #include #include -#include "Transform.h" +#include #include #include #include "PhysicsSystem.h" @@ -19,8 +19,11 @@ int main(int argc, char* argv[]) { GameObject * game_object[2]; game_object[1] = new GameObject(2, "Name", "Tag", 0); // not found not used game_object[0] = new GameObject(5, "Name", "Tag", 0); - Position position = {0, 0}; - game_object[0]->add_component(position,0,0); + Point point = { + .x = 0, + .y = 0, + }; + game_object[0]->add_component(point,0,0); game_object[0]->add_component(1, 1 , BodyType::Dynamic); game_object[0]->add_component(1 , 0); physicsSystem.update(); -- cgit v1.2.3