mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-03-24 03:38:12 +05:00
18 lines
370 B
C++
18 lines
370 B
C++
#pragma once
|
|
#include "../Minecraft.World/net.minecraft.world.level.tile.entity.h"
|
|
|
|
class IUIScene_CommandBlockMenu
|
|
{
|
|
public:
|
|
void Initialise(CommandBlockEntity *commandBlock);
|
|
|
|
protected:
|
|
void ConfirmButtonClicked();
|
|
|
|
virtual wstring GetCommand();
|
|
virtual void SetCommand(wstring command);
|
|
virtual int GetPad();
|
|
|
|
private:
|
|
CommandBlockEntity *m_commandBlock;
|
|
}; |