From 080ad535e6fc6666b919b1a21b6986aaf9b678eb Mon Sep 17 00:00:00 2001 From: Loek Le Blansch Date: Wed, 23 Oct 2024 21:27:01 +0200 Subject: initial nitpicking --- src/example/Physics.cpp | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 src/example/Physics.cpp (limited to 'src/example/Physics.cpp') diff --git a/src/example/Physics.cpp b/src/example/Physics.cpp deleted file mode 100644 index ee75c5c..0000000 --- a/src/example/Physics.cpp +++ /dev/null @@ -1,31 +0,0 @@ -#include -#include -#include -#include -#include -#include -#include "PhysicsSystem.h" -#include -#include -#include - -using namespace crepe::api; -using namespace crepe; -using namespace std; - - -int main(int argc, char* argv[]) { - PhysicsSystem physicsSystem; - 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); - 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(); - return 0; -} -- cgit v1.2.3