issun-bevy 0.8.0

ISSUN plugins for Bevy ECS
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Exchange Plugin V2 - Policy-Based Design
//!
//! This plugin integrates issun-core's policy-based exchange mechanic with Bevy's ECS.

pub mod plugin;
pub mod systems;
pub mod types;

pub use plugin::ExchangePluginV2;
pub use types::{
    MarketLiquidity, OfferedValue, RequestedValue, TradeCompleted, TradeRequested, Trader,
};