mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-03 17:37:18 +00:00
29 lines
476 B
C++
29 lines
476 B
C++
#ifndef OPENMW_MWGUI_SOULGEMDIALOG_H
|
|
#define OPENMW_MWGUI_SOULGEMDIALOG_H
|
|
|
|
#include "../mwworld/ptr.hpp"
|
|
|
|
namespace MWGui
|
|
{
|
|
|
|
class MessageBoxManager;
|
|
|
|
class SoulgemDialog
|
|
{
|
|
public:
|
|
SoulgemDialog (MessageBoxManager* manager)
|
|
: mManager(manager) {}
|
|
|
|
void show (const MWWorld::Ptr& soulgem);
|
|
|
|
void onButtonPressed(int button);
|
|
|
|
private:
|
|
MessageBoxManager* mManager;
|
|
MWWorld::Ptr mSoulgem;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|