You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
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
|