Table of Contents

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 = 4

The desert (arid) biome.

Forest = 8

The forest (temperate) biome.

Jungle = 32

The jungle biome.

Snow = 2

The snow (arctic) biome.

Tundra = 16

The tundra biome.

Unknown = -1

An unrecognized biome type not known to this library version. Not part of the wire protocol; the tolerant-deserialization fallback for any undefined value.