all-is-cubes-content 0.5.0

Demo/default game content for the all-is-cubes engine.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Construction of “dungeons”, meaning building interiors assembled of a variety of rooms
//! on a common grid.
//!
//! TODO: This module is currently private but should be made public if these construction
//! tools turn out reasonably generic.

mod generic;
use generic::*;

mod maze;
use maze::*;

pub(crate) use demo_dungeon::*;
mod demo_dungeon;