bevy_gauge 0.2.0

A crate designed to provide an opinionated solution to handling stats, effects, abilities and tags
Documentation

use bevy::app::App;

pub mod app_extension;
pub mod components;
pub mod dirty;
pub mod eval_context;
pub mod macros;
pub mod prelude;
pub mod requirements;
pub mod schedule;
pub mod serialization;
pub mod stat_effect;
pub mod systems;
pub mod traits;
pub mod tags;
pub mod modifiers;
pub mod effects;

pub fn plugin(app: &mut App) {
    app.add_plugins((
        schedule::plugin,
        components::plugin,
    ))
    .register_type::<prelude::StatContext>();
}