Moved geometry to root level
[kaka/rust-sdl-test.git] / src / common / mod.rs
CommitLineData
af18b07f
TW
1mod time;
2pub use common::time::ScopeTimer;
60058b91
TW
3
4#[macro_export]
5macro_rules! hashmap {
6 ($($k:expr => $v:expr),*) => {
7 {
8 let mut map = std::collections::HashMap::new();
9 $(map.insert($k, $v);)*
10 map
11 }
12 }
13}