diff options
Diffstat (limited to 'planetwars-matchrunner')
-rw-r--r-- | planetwars-matchrunner/src/bot_runner.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/planetwars-matchrunner/src/bot_runner.rs b/planetwars-matchrunner/src/bot_runner.rs index 8597e26..f7c0742 100644 --- a/planetwars-matchrunner/src/bot_runner.rs +++ b/planetwars-matchrunner/src/bot_runner.rs @@ -108,9 +108,9 @@ impl Bot { pub struct BotProcess { #[allow(dead_code)] - child: process::Child, - stdin: process::ChildStdin, - stdout: Lines<BufReader<process::ChildStdout>>, + pub child: process::Child, + pub stdin: process::ChildStdin, + pub stdout: Lines<BufReader<process::ChildStdout>>, } impl BotProcess { |