bardic 0.3.0

A performance-focused toolkit for procedural narrative generation.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![deny(missing_docs)]

//! Bardic provides performant building blocks for creating large-scale
//! procedural narrative generators.

/// Provides types for managing unique IDs within a system.
/// 
/// IDs can be used to represent properties/states of entities
/// without needing to use strings or other more complex types.
/// This improves memory and run-time performance.
/// 
/// The [id::IdManager] struct can be used to validate ID usage
/// at initialization.
pub mod id;

/// Provides functionality for procedural text generation.
pub mod text;