hypoloop/examples/particles/src/main.rs

10 lines
127 B
Rust
Raw Normal View History

2021-08-11 14:21:12 -06:00
use hypoloop::Simulation;
2021-08-11 13:52:44 -06:00
fn main() {
2021-08-11 14:21:12 -06:00
// create sim
let mut sim = Simulation::new();
// run sim
sim.run();
2021-08-11 13:52:44 -06:00
}