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.cpp8
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;
}