rustorio 0.1.2

The first game written and played entirely in Rust's type system. Not just do you play by writing Rust code, the rules of the game are enforced by the Rust compiler! If you can write the program so it compiles and doesn't panic, you win!
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![warn(missing_docs)]
//! The base mod for Rustorio.
//! Contains all the main content of the game.
//! Your saves should depend on this crate.
//!
//! For more information, including help on getting started, see the [repo](https://github.com/albertsgarde/rustorio)

pub mod buildings;
pub mod gamemodes;
pub mod guide;
pub mod recipes;
pub mod research;
pub mod resources;
pub mod territory;

pub use rustorio_engine::mod_reexports::*;