Skip to content

Commit

Permalink
add bf4
Browse files Browse the repository at this point in the history
  • Loading branch information
zefanjajobse committed Jan 19, 2023
1 parent 1153fb2 commit 8a71efe
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ jobs:
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
target/release/bf4.exe
target/release/bf1.exe
target/release/bfv.exe
target/release/bf2042.exe
Expand Down
3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ env_logger = "0.10.0"
chrono = "*"
confy = "0.5.1"

[[bin]]
name = "bf4"
path = "src/bf4.rs"

[[bin]]
name = "bf1"
Expand Down
9 changes: 9 additions & 0 deletions src/bf4.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
mod shared_main;
mod chars;
mod send_keys;
mod actions;
mod structs;

fn main() {
shared_main::anti_afk_runner("Battlefield 4");
}

0 comments on commit 8a71efe

Please sign in to comment.