tavern_keeper/src/events/world_genesis.rs

17 lines
303 B
Rust

use crate::state::{GameState, Action};
pub struct WorldGenesis;
impl Action for WorldGenesis {
fn apply(&self, _state: &mut GameState) {
return;
}
fn description(&self) -> String {
"World was created".to_string()
}
fn notable(&self) -> bool {
true
}
}