Files
node-metaverse/lib/events/TeleportEvent.ts
2025-01-17 23:53:31 +00:00

11 lines
269 B
TypeScript

import type { TeleportEventType } from '../enums/TeleportEventType';
export class TeleportEvent
{
public eventType: TeleportEventType;
public message: string;
public simIP: string;
public simPort: number;
public seedCapability: string;
}