mirror of
https://gitea.murdle.top/murdle/mc-lce.git
synced 2026-03-10 19:19:01 +02:00
19 lines
391 B
C++
19 lines
391 B
C++
#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);
|
|
}; |