blastmud/blastmud_game/src/static_content/room.rs

6 lines
123 B
Rust
Raw Normal View History

use super::StaticItem;
pub fn static_items() -> Box<dyn Iterator<Item = StaticItem>> {
Box::new(vec!().into_iter())
}