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