28 lines
650 B
C++
28 lines
650 B
C++
/*
|
|
* =====================================================================================
|
|
*
|
|
* Filename: SmallCraftingWidget.hpp
|
|
*
|
|
* Description:
|
|
*
|
|
* Created: 27/06/2018 09:03:26
|
|
*
|
|
* Author: Quentin Bazin, <quent42340@gmail.com>
|
|
*
|
|
* =====================================================================================
|
|
*/
|
|
#ifndef SMALLCRAFTINGWIDGET_HPP_
|
|
#define SMALLCRAFTINGWIDGET_HPP_
|
|
|
|
#include "CraftingWidget.hpp"
|
|
|
|
class SmallCraftingWidget : public CraftingWidget {
|
|
public:
|
|
SmallCraftingWidget(Widget *parent = nullptr);
|
|
|
|
private:
|
|
Inventory m_inventory{2, 2};
|
|
};
|
|
|
|
#endif // SMALLCRAFTINGWIDGET_HPP_
|