We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1153fb2 commit 8a71efeCopy full SHA for 8a71efe
.github/workflows/main.yml
@@ -39,6 +39,7 @@ jobs:
39
if: startsWith(github.ref, 'refs/tags/')
40
with:
41
files: |
42
+ target/release/bf4.exe
43
target/release/bf1.exe
44
target/release/bfv.exe
45
target/release/bf2042.exe
Cargo.toml
@@ -16,6 +16,9 @@ env_logger = "0.10.0"
16
chrono = "*"
17
confy = "0.5.1"
18
19
+[[bin]]
20
+name = "bf4"
21
+path = "src/bf4.rs"
22
23
[[bin]]
24
name = "bf1"
src/bf4.rs
@@ -0,0 +1,9 @@
1
+mod shared_main;
2
+mod chars;
3
+mod send_keys;
4
+mod actions;
5
+mod structs;
6
+
7
+fn main() {
8
+ shared_main::anti_afk_runner("Battlefield 4");
9
+}
0 commit comments