aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.Client/TrapScreen.h
blob: bda3158fd26d203c3087200ef117d91dd9753508 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once
#include "AbstractContainerScreen.h"
class DispenserTileEntity;
class Inventory;

class TrapScreen : public AbstractContainerScreen
{
public:
	TrapScreen(shared_ptr<Inventory> inventory, shared_ptr<DispenserTileEntity> trap);
protected:
	virtual void renderLabels();
    virtual void renderBg(float a);
};