forked from Kolyah35/minecraft-pe-0.6.1
16 lines
252 B
C++
Executable File
16 lines
252 B
C++
Executable File
#pragma once
|
|
|
|
#include "PaneCraftingScreen.h"
|
|
|
|
class WorkbenchScreen: public PaneCraftingScreen
|
|
{
|
|
typedef PaneCraftingScreen super;
|
|
public:
|
|
WorkbenchScreen(int craftingSize);
|
|
~WorkbenchScreen();
|
|
|
|
private:
|
|
bool filterRecipe(const Recipe& r);
|
|
};
|
|
|