diff options
author | max-001 <maxsmits21@kpnmail.nl> | 2024-11-07 19:24:24 +0100 |
---|---|---|
committer | max-001 <maxsmits21@kpnmail.nl> | 2024-11-07 19:24:24 +0100 |
commit | f49c93a5dfc0aeb5c0087cc9adfeb68526a2b0a7 (patch) | |
tree | d9bdec5dfad314c42569297e74612588daf99653 /src/example/physics.cpp | |
parent | 7131a94fcfab041cb2dbaccefadb12d1db022d73 (diff) |
Make format
Diffstat (limited to 'src/example/physics.cpp')
-rw-r--r-- | src/example/physics.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/example/physics.cpp b/src/example/physics.cpp index 9a5e5f9..a7e94f6 100644 --- a/src/example/physics.cpp +++ b/src/example/physics.cpp @@ -9,16 +9,16 @@ 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); + GameObject * game_object; + game_object = new GameObject(0, "Name", "Tag", Vector2{0, 0}, 0, 0); game_object->add_component<Rigidbody>(Rigidbody::RigidbodyData{ .mass = 1, .gravity_scale = 1, .body_type = Rigidbody::BodyType::DYNAMIC, - .constraints = {0,0,0}, + .constraints = {0, 0, 0}, .use_gravity = true, .bounce = false, - }); + }); delete game_object; return 0; } |