aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.Client/CraftingScreen.h
blob: 2de1681f4d529b539c5a528dbed5e5b13758ab01 (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(shared_ptr<Inventory> inventory, Level *level, int x, int y, int z);
	virtual void removed();
protected:
	virtual void renderLabels();
	virtual void renderBg(float a);
};