aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.Client/Common/UI/IUIScene_CommandBlockMenu.h
blob: db0aff821988f95515c0fdb1b8723a42acf46c6e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#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;
};