micro_quest 0.1.0

Structures and systems for managing game dialog & quests
Documentation
1
2
3
4
5
6
7
8
9
10
//! Manage and access Quest & Dialogue data authored using Micro Forge, with an optional bevy
//! integration

#[cfg(feature = "bevy")]
mod bevy_integration;
mod quest_log;

#[cfg(feature = "bevy")]
pub use bevy_integration::{AssetServerQuestLocator, MicroQuestPlugin, QuestFileLoader};
pub use quest_log::{Quest, QuestEntry, QuestID, QuestLocator, QuestLog, QuestState, StateID};