mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
10 lines
224 B
Rust
10 lines
224 B
Rust
pub mod deplete_resources;
|
|
|
|
use rtsim::RtState;
|
|
use tracing::info;
|
|
|
|
pub fn start_rules(rtstate: &mut RtState) {
|
|
info!("Starting server rtsim rules...");
|
|
rtstate.start_rule::<deplete_resources::DepleteResources>();
|
|
}
|