issun 0.10.0

A mini game engine for logic-focused games - Build games in ISSUN (一寸) of time
Documentation
1
2
3
4
5
6
7
8
9
10
//! State for macroeconomy plugin

use issun_core::mechanics::macroeconomy::EconomicIndicators;

/// State for macroeconomy plugin
#[derive(Debug, Clone, Default)]
pub struct MacroeconomyState {
    /// Current economic indicators
    pub indicators: EconomicIndicators,
}