blob: 314026aef8fb25248ef784f03bc14d5f51c45860 (
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:
std::shared_ptr<Container> inventory;
std::shared_ptr<Container> container;
int containerRows;
public:
ContainerScreen(std::shared_ptr<Container>inventory, std::shared_ptr<Container>container);
protected:
virtual void renderLabels();
virtual void renderBg(float a);
};
|