1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
//! Minutae Simulation Engine

#![feature(conservative_impl_trait, test)]

extern crate test;
extern crate num_cpus;
extern crate uuid;

pub mod universe;
pub mod container;
pub mod cell;
pub mod entity;
pub mod action;
pub mod engine;
pub mod generator;
pub mod util;
pub mod driver;