[Closes #13] Add ParcelPropertiesRequest with parcel bitmap decoding to ensure the correct reply is given. Heavily optimise getParcels() so that it uses the parcelOverlay to intelligently request parcels at known locations rather than iterating over every block.
This commit is contained in:
9
lib/classes/interfaces/ILandBlock.ts
Normal file
9
lib/classes/interfaces/ILandBlock.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
import { LandFlags } from '../../enums/LandFlags';
|
||||
import { LandType } from '../../enums/LandType';
|
||||
|
||||
export interface ILandBlock
|
||||
{
|
||||
landType: LandType;
|
||||
landFlags: LandFlags;
|
||||
parcelID: number;
|
||||
}
|
||||
Reference in New Issue
Block a user