steel_registry/generated/vanilla_world_clocks.rs
1use crate::world_clock::{WorldClock, WorldClockRegistry};
2use steel_utils::Identifier;
3pub static THE_END: WorldClock = WorldClock {
4 key: Identifier::vanilla_static("the_end"),
5};
6pub static OVERWORLD: WorldClock = WorldClock {
7 key: Identifier::vanilla_static("overworld"),
8};
9pub fn register_world_clocks(registry: &mut WorldClockRegistry) {
10 registry.register(&THE_END);
11 registry.register(&OVERWORLD);
12}