issun-bevy 0.8.0

ISSUN plugins for Bevy ECS
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Accounting Plugin - Periodic financial settlement system
//!
//! Provides budget management, settlement processing, and financial tracking.

pub mod components;
pub mod events;
pub mod plugin;
pub mod systems;

pub use components::*;
pub use events::*;
pub use plugin::AccountingPlugin;