import { Vector3 } from '../types/Vector3'; import { int } from '../types/NativeAliases'; export declare class Zone { /** * Returns the zone's name hash if its type matches one of the following: * * @param pos * @returns */ static getWaterMapZoneAtCoords(pos: Vector3): number; /** * Returns name hash, see common:/data/levels/rdr3/mapzones.meta type (-1 matches any type): * class CMapZone * { * public: * enum class Type * { * STATE, * TOWN, * LAKE, * RIVER, * OIL_SPILL, * SWAMP, * OCEAN, * CREEK, * POND, * GLACIER, * DISTRICT, * TEXT_PRINTED, * TEXT_WRITTEN * }; * }; https://github.com/femga/rdr3_discoveries/tree/master/zones & https://alloc8or.re/rdr3/doc/enums/CMapZone__Type.txt * * @param pos * @param type * @returns */ static getMapZoneAtCoords(pos: Vector3, type: int): number; } //# sourceMappingURL=Zone.d.ts.map