ps2census
Version:
Client to connect to the PS2 Event Stream websocket.
15 lines • 522 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PlayerLogout = void 0;
const character_world_event_1 = require("./base/character-world.event");
class PlayerLogout extends character_world_event_1.CharacterWorldEvent {
constructor() {
super(...arguments);
this.emit = 'playerLogout';
}
toHash() {
return `PlayerLogout:${this.character_id}:${this.timestamp}`;
}
}
exports.PlayerLogout = PlayerLogout;
//# sourceMappingURL=player-logout.event.js.map