2023-04-08 20:52:47 +01:00
|
|
|
import { Reader, Writer } from "../../bufferStuff";
|
2023-04-10 21:52:30 +01:00
|
|
|
import { Packet } from "../enums/Packet";
|
2023-04-08 20:52:47 +01:00
|
|
|
import { IPacket } from "./IPacket";
|
|
|
|
|
|
|
|
export class PacketTimeUpdate implements IPacket {
|
2023-04-10 21:52:30 +01:00
|
|
|
public packetId = Packet.TimeUpdate;
|
2023-04-09 04:19:10 +01:00
|
|
|
public time:bigint;
|
2023-04-08 20:52:47 +01:00
|
|
|
|
2023-04-09 04:19:10 +01:00
|
|
|
public constructor(time:bigint) {
|
2023-04-08 20:52:47 +01:00
|
|
|
this.time = time;
|
|
|
|
}
|
|
|
|
|
|
|
|
public readData(reader:Reader) {
|
2023-04-09 04:19:10 +01:00
|
|
|
this.time = reader.readLong();
|
2023-04-08 20:52:47 +01:00
|
|
|
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public writeData() {
|
|
|
|
return new Writer(9).writeUByte(this.packetId).writeLong(this.time).toBuffer();
|
|
|
|
}
|
|
|
|
}
|