proof-engine 0.1.1

A mathematical rendering engine for Rust. Every visual is the output of a mathematical function.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Procedural narrative engine.
//!
//! Story grammars, character motivations, dialogue generation, quest generation,
//! drama management, consequence tracking, NPC memory, unreliable narrators,
//! procedural poetry, and lore generation.

pub mod story_grammar;
pub mod motivation;
pub mod dialogue;
pub mod quest;
pub mod drama;
pub mod consequences;
pub mod memory;
pub mod poetry;
pub mod lore;