aboutsummaryrefslogtreecommitdiff
path: root/src/lib.rs
blob: 4b383f1d718575e2e766f695594182a2dcf0a41b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#![warn(missing_docs)]

//! Bevy plugin providing a yarnspinner-based dialog system for the bevy_terminal_display plugin
//! and dirworld plugin.

use bevy::prelude::*;

mod systems;
pub mod widgets;
pub mod util;

/// Plugin which provides dialog functionality
pub struct TerminalDialogPlugin;

impl Plugin for TerminalDialogPlugin {
    fn build(&self, app: &mut App) {
        app.add_systems(Startup, systems::setup);
    }
}