Enum BiomeType
- Namespace
- RustMapsApi.V4.Models
- Assembly
- RustMapsApi.dll
A Rust biome type. Numeric values match the RustMaps wire protocol, except the
Unknown (-1) member, which is a library-only fallback for values this version does not recognize.
[SuppressMessage("Design", "CA1027:Mark enums with FlagsAttribute", Justification = "Values mirror the wire protocol (mostly powers of two, plus the -1 Unknown fallback) and are used as single values, not bitwise flags.")]
public enum BiomeType
Fields
Desert = 4The desert (arid) biome.
Forest = 8The forest (temperate) biome.
Jungle = 32The jungle biome.
Snow = 2The snow (arctic) biome.
Tundra = 16The tundra biome.
Unknown = -1An unrecognized biome type not known to this library version. Not part of the wire protocol; the tolerant-deserialization fallback for any undefined value.