mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
16 lines
247 B
Rust
16 lines
247 B
Rust
use serde::{Deserialize, Serialize};
|
|
|
|
#[derive(Debug, Copy, Clone, Serialize, Deserialize, PartialEq)]
|
|
pub enum BiomeKind {
|
|
Void,
|
|
Lake,
|
|
Grassland,
|
|
Ocean,
|
|
Mountain,
|
|
Snowland,
|
|
Desert,
|
|
Swamp,
|
|
Jungle,
|
|
Forest,
|
|
}
|