taurus 0.1.1

A WIP roguelike game being developed in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Game constants.

pub const MESSAGE_DEQUE_SIZE: usize = 1000;

// GAME DATA LOCATIONS

pub const ORG_DIRECTORY: &str = "data/manuals";
pub const ORG_MANUAL: &str = "game.org";

// MISC

pub const FLAME_PATH: &str = "flame.html";