Skip to main content

Module zone_type

Module zone_type 

Source
Expand description

ZoneType — game zone types.

Mirrors Java’s ZoneType.java. The core enum lives in forge_foundation::ZoneType; this module re-exports it and adds zone-module-specific helper functions.

Enums§

ZoneType
Game zones. Mirrors Java ZoneType.

Functions§

is_hidden
Whether this zone holds hidden information. Mirrors Java’s ZoneType.isHidden().
is_known
Whether this zone holds known (public) information. Mirrors Java’s ZoneType.isKnown().
list_value_of
Parse a comma/space-separated list of zone types. “All” returns the standard set of zones. Mirrors Java’s ZoneType.listValueOf().
smart_value_of
Parse a zone type from a string. Mirrors Java’s ZoneType.smartValueOf().