aboutsummaryrefslogtreecommitdiff
path: root/examples2d/all_examples2.rs
diff options
context:
space:
mode:
authorSébastien Crozet <developer@crozet.re>2020-11-03 11:44:11 +0100
committerGitHub <noreply@github.com>2020-11-03 11:44:11 +0100
commit704496d9889d2037d6e5e479d398c78bf3a83f75 (patch)
tree4e1bad46a42dc90b782410d9396ca731d94a596c /examples2d/all_examples2.rs
parenta38fdc101dc74473c45a8b4f5d770f2bc43f30c2 (diff)
parent502be0245c10eeaf5e30ed25653c5a76287e72be (diff)
downloadrapier-704496d9889d2037d6e5e479d398c78bf3a83f75.tar.gz
rapier-704496d9889d2037d6e5e479d398c78bf3a83f75.tar.bz2
rapier-704496d9889d2037d6e5e479d398c78bf3a83f75.zip
Merge pull request #51 from dimforge/restitution
Add restitution.
Diffstat (limited to 'examples2d/all_examples2.rs')
-rw-r--r--examples2d/all_examples2.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/examples2d/all_examples2.rs b/examples2d/all_examples2.rs
index 9bae719..052d6cc 100644
--- a/examples2d/all_examples2.rs
+++ b/examples2d/all_examples2.rs
@@ -17,6 +17,7 @@ mod heightfield2;
mod joints2;
mod platform2;
mod pyramid2;
+mod restitution2;
mod sensor2;
fn demo_name_from_command_line() -> Option<String> {
@@ -58,6 +59,7 @@ pub fn main() {
("Joints", joints2::init_world),
("Platform", platform2::init_world),
("Pyramid", pyramid2::init_world),
+ ("Restitution", restitution2::init_world),
("Sensor", sensor2::init_world),
("(Debug) box ball", debug_box_ball2::init_world),
];