2017-12-13 19:55:08 +00:00
|
|
|
import { UUID } from '../UUID';
|
|
|
|
|
import { CommandsBase } from './CommandsBase';
|
2018-10-06 17:09:41 +01:00
|
|
|
import { MapInfoRangeReplyEvent, MapInfoReplyEvent, RegionInfoReplyEvent } from '../..';
|
2017-12-13 19:55:08 +00:00
|
|
|
export declare class GridCommands extends CommandsBase {
|
2018-10-06 17:09:41 +01:00
|
|
|
getRegionByName(regionName: string): Promise<RegionInfoReplyEvent>;
|
|
|
|
|
getRegionMapInfo(gridX: number, gridY: number): Promise<MapInfoReplyEvent>;
|
|
|
|
|
getRegionMapInfoRange(minX: number, minY: number, maxX: number, maxY: number): Promise<MapInfoRangeReplyEvent>;
|
2017-12-14 18:22:41 +00:00
|
|
|
name2Key(name: string): Promise<UUID>;
|
2017-12-13 19:55:08 +00:00
|
|
|
}
|