Teleports, Asset upload / download, Restructure stuff, Fix varlength read bug, BVH parser, agent initial appearance and animation glitches, LLSD + Caps + Event queue
This commit is contained in:
11
lib/classes/ClientEvents.ts
Normal file
11
lib/classes/ClientEvents.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
import {LureEvent} from '../events/LureEvent';
|
||||
import {ChatEvent} from '../events/ChatEvent';
|
||||
import {TeleportEvent} from '../events/TeleportEvent';
|
||||
import {Subject} from 'rxjs/Subject';
|
||||
|
||||
export class ClientEvents
|
||||
{
|
||||
onNearbyChat: Subject<ChatEvent> = new Subject<ChatEvent>();
|
||||
onLure: Subject<LureEvent> = new Subject<LureEvent>();
|
||||
onTeleportEvent: Subject<TeleportEvent> = new Subject<TeleportEvent>();
|
||||
}
|
||||
Reference in New Issue
Block a user