Files
node-metaverse/lib/events/ChatEvent.ts

18 lines
480 B
TypeScript

import { ChatAudibleLevel } from '../enums/ChatAudible';
import { ChatType } from '../enums/ChatType';
import { UUID } from '../classes/UUID';
import { ChatSourceType } from '../enums/ChatSourceType';
import { Vector3 } from '../classes/Vector3';
export class ChatEvent
{
from: UUID;
ownerID: UUID;
fromName: string;
chatType: ChatType;
sourceType: ChatSourceType;
audible: ChatAudibleLevel;
position: Vector3;
message: string;
}