foxtrot 0.1.0

A 3D reference project and tech demo for the Bevy Engine.
//! Reusable UI widgets & theming.

// Unused utilities may trigger this lints undesirably.
#![allow(dead_code)]

pub(crate) mod interaction;
pub(crate) mod palette;
pub(crate) mod widget;

#[allow(unused_imports)]
pub(crate) mod prelude {
    pub(crate) use super::{interaction::InteractionPalette, palette as ui_palette, widget};
}

use bevy::prelude::*;

pub(super) fn plugin(app: &mut App) {
    app.add_plugins(interaction::plugin);
}