2025-01-17 23:37:54 +00:00
|
|
|
import type { UUID } from './UUID';
|
|
|
|
|
import type { RegionFlags } from '../enums/RegionFlags';
|
2018-04-07 21:43:39 +01:00
|
|
|
|
|
|
|
|
export class MapBlock
|
|
|
|
|
{
|
2025-01-17 23:37:54 +00:00
|
|
|
public name: string;
|
|
|
|
|
public mapImage: UUID;
|
|
|
|
|
public accessFlags: number;
|
|
|
|
|
public x: number;
|
|
|
|
|
public y: number;
|
|
|
|
|
public waterHeight: number;
|
|
|
|
|
public regionFlags: RegionFlags;
|
2020-01-05 00:30:13 +00:00
|
|
|
}
|