startrust 0.1.0

A revification of the Star Trek game from 1978, rewritten in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// #![allow(clippy::many_single_char_names)]
#[macro_use]
extern crate derive_builder;
extern crate dimensioned as dim;

pub use error::{StResult, StarTrustError};
pub use interaction::{clrscr, yesno};
pub use stinstr::{show_instructions, show_title};
pub use the_game::{TheGame, TheGameDefs, TheGameDefsBuilder};

mod error;
mod interaction;
mod stinstr;
mod the_game;
mod util;