mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-25 13:43:53 +00:00
17 lines
412 B
C++
17 lines
412 B
C++
#pragma once
|
|
#include "../../../../Minecraft.World/Headers/net.minecraft.world.level.tile.entity.h"
|
|
|
|
class IUIScene_CommandBlockMenu {
|
|
public:
|
|
void Initialise(CommandBlockEntity* commandBlock);
|
|
|
|
protected:
|
|
void ConfirmButtonClicked();
|
|
|
|
virtual std::wstring GetCommand();
|
|
virtual void SetCommand(std::wstring command);
|
|
virtual int GetPad();
|
|
|
|
private:
|
|
CommandBlockEntity* m_commandBlock;
|
|
}; |