mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 18:49:54 +00:00
28 lines
476 B
C++
28 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
|