Files
LegacyMultiplayerProject/Minecraft.World/ToggleDownfallCommand.h
DrPerkyLegit 5b19646cc6 init
2026-06-23 01:27:12 -04:00

17 lines
331 B
C++

#pragma once
#include "Command.h"
class GameCommandPacket;
class ToggleDownfallCommand : public Command
{
public:
virtual EGameCommand getId();
virtual void execute(shared_ptr<CommandSender> source, byteArray commandData);
protected:
void doToggleDownfall();
public:
static shared_ptr<GameCommandPacket> preparePacket();
};