This is one of the first commits in a plan to remove all `using namespace std;` lines in the entire codebase as it is considered anti-pattern today.
13 lines
328 B
C++
13 lines
328 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);
|
|
}; |