Files
LegacyMultiplayerProject/Minecraft.Client/ContainerScreen.h
DrPerkyLegit b3e825ef9c Initial commit
2026-06-23 01:07:42 -04:00

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);
};