veloren/world/src/config.rs

10 lines
165 B
Rust
Raw Normal View History

2019-06-09 10:24:18 +00:00
pub struct Config {
pub sea_level: f32,
pub mountain_scale: f32,
}
pub const CONFIG: Config = Config {
2019-06-10 16:28:02 +00:00
sea_level: 140.0,
2019-06-09 18:46:30 +00:00
mountain_scale: 1200.0,
2019-06-09 10:24:18 +00:00
};