aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.Client/ContainerScreen.h
blob: 38806c1e435f93686e0de03f59f6d5c70a202912 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#pragma once
#include "AbstractContainerScreen.h"
class Container;

class ContainerScreen : public AbstractContainerScreen
{
private:
	shared_ptr<Container> inventory;
	shared_ptr<Container> container;

	int containerRows;

public:
	ContainerScreen(shared_ptr<Container>inventory, shared_ptr<Container>container);

protected:
	virtual void renderLabels();
	virtual void renderBg(float a);
};