2024.02.04 - LATEST PROBLEM

This commit is contained in:
ModulatingForce 2024-02-04 14:28:37 -05:00
commit 8d4db0c657
8 changed files with 815 additions and 121 deletions

View file

@ -4,6 +4,8 @@ pub mod core;
pub mod modules;
use std::process::Output;
use crate::core::botinstance::ArcBox;
use crate::core::botinstance::BotInstance;
#[tokio::main]
@ -11,6 +13,8 @@ pub async fn main() {
let bot = BotInstance::init();
bot.runner().await;
bot.clone().runner().await;
println!("ERROR : EXIT Game loop");
}