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

14 lines
324 B
JavaScript

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