aboutsummaryrefslogtreecommitdiff
path: root/src/example/physics.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/example/physics.cpp')
-rw-r--r--src/example/physics.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/example/physics.cpp b/src/example/physics.cpp
index 54d1807..1bafdf3 100644
--- a/src/example/physics.cpp
+++ b/src/example/physics.cpp
@@ -16,7 +16,8 @@ using namespace std;
int main(int argc, char * argv[]) {
PhysicsSystem physics_system;
GameObject * game_object[2];
- game_object[1] = new GameObject(2, "Name", "Tag", Point{0, 0}, 0, 0); // not found not used
+ // not found not used
+ game_object[1] = new GameObject(2, "Name", "Tag", Point{0, 0}, 0, 0);
game_object[0] = new GameObject(5, "Name", "Tag", Point{0, 0}, 0, 0);
game_object[0]->add_component<Rigidbody>(1, 1, BodyType::DYNAMIC);
game_object[0]->add_component<Force>(1, 0);