Skip to main content

steel_registry/generated/
vanilla_world_clocks.rs

1use crate :: world_clock :: { WorldClock , WorldClockRegistry } ; use steel_utils :: Identifier ; pub static THE_END : WorldClock = WorldClock { key : Identifier :: vanilla_static ("the_end") , } ; pub static OVERWORLD : WorldClock = WorldClock { key : Identifier :: vanilla_static ("overworld") , } ; pub fn register_world_clocks (registry : & mut WorldClockRegistry) { registry . register (& THE_END) ; registry . register (& OVERWORLD) ; }