Files
node-metaverse/lib/events/ParcelInfoReplyEvent.ts
Casper Warden ad559567b3 This commit demonstrates how to add a new client command to node-metaverse.
It also shows how to add a new command category (ParcelCommands)

Everything under dist/ is auto-generated with "npm run build".
2018-10-06 17:18:46 +01:00

18 lines
398 B
TypeScript

import {ParcelInfoFlags, UUID, Vector3} from '..';
export 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;
}