added rust build files to the gitignore & added a ron for bindings for inputs

This commit is contained in:
brad 2019-04-22 01:38:22 -05:00
parent 845b2c0a56
commit 2143e546b1
2 changed files with 22 additions and 3 deletions

18
.gitignore vendored
View File

@ -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

View File

@ -0,0 +1,7 @@
(
axes: {
"left_paddle": Emulated(pos: Key(W), neg: Key(S)),
"right_paddle": Emulated(pos: Key(Up), neg: Key(Down)),
},
actions: {},
)