Files
node-metaverse/lib/events/ChatEvent.ts
2018-10-06 17:16:51 +01:00

16 lines
380 B
TypeScript

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