#pragma once #include #include "AbstractContainerScreen.h" #include "minecraft/world/inventory/BrewingStandMenu.h" class BrewingStandMenu; class BrewingStandTileEntity; class Inventory; class BrewingStandScreen : public AbstractContainerScreen { public: BrewingStandScreen(std::shared_ptr inventory, std::shared_ptr brewingStand); virtual ~BrewingStandScreen(); void init() override; void removed() override; void renderLabels() override; void renderBg(float a) override; void render(int xm, int ym, float a) override; private: std::shared_ptr inventory; std::shared_ptr brewingStand; BrewingStandMenu* brewMenu; };