From 502be0245c10eeaf5e30ed25653c5a76287e72be Mon Sep 17 00:00:00 2001 From: Crozet Sébastien Date: Tue, 3 Nov 2020 11:21:06 +0100 Subject: Add restitution. --- examples2d/all_examples2.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'examples2d/all_examples2.rs') 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 { @@ -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), ]; -- cgit