2017-12-13 15:23:50 +00:00
|
|
|
"use strict";
|
|
|
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
|
|
const Subject_1 = require("rxjs/Subject");
|
|
|
|
|
class ClientEvents {
|
|
|
|
|
constructor() {
|
|
|
|
|
this.onNearbyChat = new Subject_1.Subject();
|
2017-12-13 19:55:08 +00:00
|
|
|
this.onInstantMessage = new Subject_1.Subject();
|
|
|
|
|
this.onGroupInvite = new Subject_1.Subject();
|
|
|
|
|
this.onFriendRequest = new Subject_1.Subject();
|
2017-12-19 19:59:06 +00:00
|
|
|
this.onInventoryOffered = new Subject_1.Subject();
|
2017-12-13 15:23:50 +00:00
|
|
|
this.onLure = new Subject_1.Subject();
|
|
|
|
|
this.onTeleportEvent = new Subject_1.Subject();
|
2017-12-13 19:55:08 +00:00
|
|
|
this.onDisconnected = new Subject_1.Subject();
|
|
|
|
|
this.onCircuitLatency = new Subject_1.Subject();
|
2017-12-14 18:22:41 +00:00
|
|
|
this.onGroupChat = new Subject_1.Subject();
|
2017-12-15 19:13:45 +00:00
|
|
|
this.onGroupChatSessionJoin = new Subject_1.Subject();
|
2017-12-19 17:58:25 +00:00
|
|
|
this.onGroupChatAgentListUpdate = new Subject_1.Subject();
|
2017-12-19 20:25:42 +00:00
|
|
|
this.onFriendResponse = new Subject_1.Subject();
|
2017-12-13 15:23:50 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
exports.ClientEvents = ClientEvents;
|
|
|
|
|
//# sourceMappingURL=ClientEvents.js.map
|