diff --git a/.gitignore b/.gitignore index fa694f7..07abace 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,18 @@ -# Created by https://www.gitignore.io/api/visualstudiocode -# Edit at https://www.gitignore.io/?templates=visualstudiocode +# Created by https://www.gitignore.io/api/rust,visualstudiocode +# Edit at https://www.gitignore.io/?templates=rust,visualstudiocode + +### Rust ### +# Generated by Cargo +# will have compiled files and executables +/target/ + +# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries +# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html +Cargo.lock + +# These are backup files generated by rustfmt +**/*.rs.bk ### VisualStudioCode ### .vscode/* @@ -13,4 +25,4 @@ # Ignore all local history of files .history -# End of https://www.gitignore.io/api/visualstudiocode +# End of https://www.gitignore.io/api/rust,visualstudiocode \ No newline at end of file diff --git a/resources/bindings_config.ron b/resources/bindings_config.ron new file mode 100644 index 0000000..3357455 --- /dev/null +++ b/resources/bindings_config.ron @@ -0,0 +1,7 @@ +( + axes: { + "left_paddle": Emulated(pos: Key(W), neg: Key(S)), + "right_paddle": Emulated(pos: Key(Up), neg: Key(Down)), + }, + actions: {}, +) \ No newline at end of file