#![no_std]
extern crate alloc;
pub mod ai;
pub mod eval;
pub mod find;
pub mod bot;
#[cfg(feature = "io")]
pub mod io;
pub use ai::Ai;
pub use bot::Bot;
pub use find::find_locations;