simple ant colony program written in rust i originally started with C but then started to miss data structures so I re-wrote it in rust
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
antf/src/lib.rs

7 lines
110 B

pub mod lib {
pub mod point;
pub mod screen;
pub mod world;
pub mod entity;
pub mod ai;
}