It also shows how to add a new command category (ParcelCommands) Everything under dist/ is auto-generated with "npm run build".
16 lines
405 B
TypeScript
16 lines
405 B
TypeScript
import { ParcelInfoFlags, UUID, Vector3 } from '..';
|
|
export declare class ParcelInfoReplyEvent {
|
|
OwnerID: UUID;
|
|
ParcelName: string;
|
|
ParcelDescription: string;
|
|
Area: number;
|
|
BillableArea: number;
|
|
Flags: ParcelInfoFlags;
|
|
GlobalCoordinates: Vector3;
|
|
RegionName: string;
|
|
SnapshotID: UUID;
|
|
Traffic: number;
|
|
SalePrice: number;
|
|
AuctionID: number;
|
|
}
|