diff options
Diffstat (limited to 'Minecraft.Client/CraftingScreen.h')
| -rw-r--r-- | Minecraft.Client/CraftingScreen.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Minecraft.Client/CraftingScreen.h b/Minecraft.Client/CraftingScreen.h new file mode 100644 index 00000000..2de1681f --- /dev/null +++ b/Minecraft.Client/CraftingScreen.h @@ -0,0 +1,14 @@ +#pragma once +#include "AbstractContainerScreen.h" +class Inventory; +class Level; + +class CraftingScreen : public AbstractContainerScreen +{ +public: + CraftingScreen(shared_ptr<Inventory> inventory, Level *level, int x, int y, int z); + virtual void removed(); +protected: + virtual void renderLabels(); + virtual void renderBg(float a); +};
\ No newline at end of file |
