q13x-eaglerproxy/server/proxy/packets/CSReadyPacket.js
2024-09-04 12:02:00 +00:00

14 lines
324 B
JavaScript

import { Enums } from "../Enums.js";
export class CSReadyPacket {
packetId = Enums.PacketId.CSReadyPacket;
type = "packet";
boundTo = Enums.PacketBounds.S;
sentAfterHandshake = false;
serialize() {
return Buffer.from([this.packetId]);
}
deserialize(packet) {
return this;
}
}