16 lines
242 B
C++
Executable File
16 lines
242 B
C++
Executable File
#pragma once
|
|
|
|
#include "PaneCraftingScreen.h"
|
|
|
|
class StonecutterScreen: public PaneCraftingScreen
|
|
{
|
|
typedef PaneCraftingScreen super;
|
|
public:
|
|
StonecutterScreen();
|
|
~StonecutterScreen();
|
|
|
|
private:
|
|
bool filterRecipe(const Recipe& r);
|
|
};
|
|
|