OpenMiner/include/gui/WorkbenchWidget.hpp

35 lines
798 B
C++
Raw Normal View History

/*
* =====================================================================================
*
* Filename: WorkbenchWidget.hpp
*
* Description:
*
* Created: 20/06/2018 23:22:08
*
* Author: Quentin Bazin, <quent42340@gmail.com>
*
* =====================================================================================
*/
#ifndef WORKBENCHWIDGET_HPP_
#define WORKBENCHWIDGET_HPP_
#include "InventoryWidget.hpp"
class WorkbenchWidget : public Widget {
public:
WorkbenchWidget(Widget *parent = nullptr);
void onEvent(const SDL_Event &event);
private:
void draw(RenderTarget &target, RenderStates states) const override;
Image m_background;
Inventory m_inventory{9, 3};
InventoryWidget m_inventoryWidget{this};
};
#endif // WORKBENCHWIDGET_HPP_