Files
MinecraftCommunityEdition-c…/Minecraft.World/DefaultGameModeCommand.h
LazyByteDev b40d5e9d01 src stuff
2026-03-02 03:31:00 -05:00

15 lines
294 B
C++

#pragma once
#include "GameModeCommand.h"
class GameType;
class DefaultGameModeCommand : public GameModeCommand
{
public:
virtual EGameCommand getId();
virtual void execute(shared_ptr<CommandSender> source, byteArray commandData);
protected:
void doSetGameType(GameType *newGameType);
};