aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.Client/CraftingScreen.h
blob: 42b2623a8caf0d9f8a086cfad9692a35d95aca70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once
#include "AbstractContainerScreen.h"
class Inventory;
class Level;

class CraftingScreen : public AbstractContainerScreen
{
public:
	CraftingScreen(std::shared_ptr<Inventory> inventory, Level *level, int x, int y, int z);
	virtual void removed();
protected:
	virtual void renderLabels();
	virtual void renderBg(float a);
};