2026-03-01 12:16:08 +08:00
|
|
|
#pragma once
|
|
|
|
|
#include "AbstractContainerScreen.h"
|
|
|
|
|
class Container;
|
|
|
|
|
|
|
|
|
|
class ContainerScreen : public AbstractContainerScreen
|
|
|
|
|
{
|
|
|
|
|
private:
|
2026-03-02 15:58:20 +07:00
|
|
|
std::shared_ptr<Container> inventory;
|
|
|
|
|
std::shared_ptr<Container> container;
|
2026-03-01 12:16:08 +08:00
|
|
|
|
|
|
|
|
int containerRows;
|
|
|
|
|
|
|
|
|
|
public:
|
2026-03-02 15:58:20 +07:00
|
|
|
ContainerScreen(std::shared_ptr<Container>inventory, std::shared_ptr<Container>container);
|
2026-03-01 12:16:08 +08:00
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
virtual void renderLabels();
|
|
|
|
|
virtual void renderBg(float a);
|
|
|
|
|
};
|