mirror of
https://github.com/MrMasrozYTLIVE/MCServer.git
synced 2025-04-03 10:18:35 -04:00
22 lines
568 B
TypeScript
22 lines
568 B
TypeScript
import {PacketEnum} from "../utils/PacketEnum";
|
|
import {createWriter, Endian, IReader} from "bufferstuff";
|
|
import {Player} from "../Player";
|
|
import {Socket} from "node:net";
|
|
|
|
export class Packet {
|
|
constructor(public options: IPacketOption) {
|
|
options.name = PacketEnum[options.packetID].toString();
|
|
}
|
|
|
|
readData(reader: IReader, player: Player) {}
|
|
writeData() {
|
|
return createWriter(Endian.BE).toBuffer();
|
|
}
|
|
}
|
|
|
|
export interface IPacketOption {
|
|
player?: Player,
|
|
packetID: PacketEnum,
|
|
name?: string,
|
|
kickReason?: string
|
|
} |