1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
//! Kingslayer is a text-based dungeon crawler adventure game and game engine

pub use cli::Cli;

/// The Cli type
pub mod cli;

mod entity;
mod input;
mod player;
mod types;
mod util;
mod world;