Supply more information with a MapBlock

This commit is contained in:
Casper Warden
2020-01-05 00:30:13 +00:00
parent 3982d67b7d
commit f145498abd
4 changed files with 12 additions and 3 deletions

View File

@@ -1,8 +1,13 @@
import {UUID} from './UUID';
import { RegionFlags } from '..';
export class MapBlock
{
name: string;
mapImage: UUID;
accessFlags: number;
}
x: number;
y: number;
waterHeight: number;
regionFlags: RegionFlags;
}