You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
398 B
Rust

#[derive(Deserialize, Debug, Clone)]
#[serde(rename_all(deserialize = "camelCase", serialize = "snake_case"))]
pub struct Biome {
pub id: u32,
pub name: String,
pub category: String,
pub temperature: f32,
pub precipitation: Option<String>,
pub depth: Option<f32>,
pub dimension: String,
pub display_name: String,
pub color: u32,
pub rainfall: Option<f32>,
}