mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-25 03:33:38 +00:00
14 lines
350 B
C++
14 lines
350 B
C++
#pragma once
|
|
#include "AbstractContainerScreen.h"
|
|
class DispenserTileEntity;
|
|
class Inventory;
|
|
|
|
class TrapScreen : public AbstractContainerScreen {
|
|
public:
|
|
TrapScreen(std::shared_ptr<Inventory> inventory,
|
|
std::shared_ptr<DispenserTileEntity> trap);
|
|
|
|
protected:
|
|
virtual void renderLabels();
|
|
virtual void renderBg(float a);
|
|
}; |