updating gitignores, adding example

This commit is contained in:
skyeshroom 2021-08-11 12:52:44 -07:00
parent ff81a450c7
commit cd327c6acc
4 changed files with 15 additions and 0 deletions

1
.gitignore vendored
View File

@ -1 +1,2 @@
/target /target
Cargo.lock

2
examples/particles/.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
/target
Cargo.lock

View File

@ -0,0 +1,9 @@
[package]
name = "particles"
version = "0.1.0"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
hypoloop = "0.1.1"

View File

@ -0,0 +1,3 @@
fn main() {
hypoloop::run_simulation();
}