Initial commit
This commit is contained in:
19
Minecraft.Client/ContainerScreen.h
Normal file
19
Minecraft.Client/ContainerScreen.h
Normal file
@@ -0,0 +1,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);
|
||||
};
|
||||
Reference in New Issue
Block a user