Files
node-metaverse/lib/classes/public/interfaces/MapLocation.ts
2025-01-17 23:53:31 +00:00

16 lines
359 B
TypeScript

import type { UUID } from '../../UUID';
import type * as Long from 'long';
import type { Vector2 } from '../../Vector2';
export interface MapLocation
{
'regionName': string;
'mapImage': UUID;
'regionHandle': Long,
'regionX': number,
'regionY': number,
'localX': number,
'localY': number,
'avatars': Vector2[]
}