Files
MinecraftConsoles/Minecraft.World/ServerSettingsChangedPacket.h
Loki Rautio 087b7e7abf Revert "Project modernization (#630)"
This code was not tested and breaks in Release builds, reverting to restore
functionality of the nightly. All in-game menus do not work and generating
a world crashes.

This reverts commit a9be52c41a.
2026-03-07 21:12:22 -06:00

31 lines
792 B
C++

#pragma once
// 4J ADDED THIS PACKET
using namespace std;
#include "Packet.h"
class ServerSettingsChangedPacket : public Packet, public enable_shared_from_this<ServerSettingsChangedPacket>
{
public:
static const int HOST_DIFFICULTY;
static const int HOST_OPTIONS;
static const int HOST_IN_GAME_SETTINGS;
char action;
unsigned int data;
ServerSettingsChangedPacket();
~ServerSettingsChangedPacket();
ServerSettingsChangedPacket(char action, unsigned int data);
virtual void handle(PacketListener *listener);
virtual void read(DataInputStream *dis);
virtual void write(DataOutputStream *dos);
virtual int getEstimatedSize();
public:
static shared_ptr<Packet> create() { return shared_ptr<Packet>(new ServerSettingsChangedPacket()); }
virtual int getId() { return 153; }
};