rusty-screeps 0.0.2

An Abstraction Library for the programming game Screeps for Rust
1
2
3
4
5
6
7
8
9
10
11
mod colony;
mod creep;
mod game;
mod spawn;

pub use self::colony::Colony;
pub use self::colony::ColonyStage;
pub use self::creep::Creep;
pub use self::creep::Job;
pub use self::game::Game;
pub use self::spawn::Spawn;