bubbles-dialogue 0.8.0

Lightweight engine-agnostic dialogue runtime for Rust games.
Documentation
1
2
3
4
5
6
7
//! Value model: [`Value`] enum, [`VariableStorage`] trait, and [`HashMapStorage`].

mod storage;
mod types;

pub use storage::{HashMapStorage, VariableStorage};
pub use types::Value;