2026-03-01 12:16:08 +08:00
|
|
|
#pragma once
|
|
|
|
|
#include "AbstractContainerScreen.h"
|
|
|
|
|
class Inventory;
|
|
|
|
|
class Level;
|
|
|
|
|
|
|
|
|
|
class CraftingScreen : public AbstractContainerScreen
|
|
|
|
|
{
|
|
|
|
|
public:
|
2026-03-02 15:58:20 +07:00
|
|
|
CraftingScreen(std::shared_ptr<Inventory> inventory, Level *level, int x, int y, int z);
|
2026-03-01 12:16:08 +08:00
|
|
|
virtual void removed();
|
|
|
|
|
protected:
|
|
|
|
|
virtual void renderLabels();
|
|
|
|
|
virtual void renderBg(float a);
|
|
|
|
|
};
|