mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-25 06:35:30 +00:00
27 lines
508 B
C++
27 lines
508 B
C++
|
#ifndef MWGUI_ENCHANTINGDIALOG_H
|
||
|
#define MWGUI_ENCHANTINGDIALOG_H
|
||
|
|
||
|
#include "window_base.hpp"
|
||
|
#include "referenceinterface.hpp"
|
||
|
|
||
|
#include "../mwbase/windowmanager.hpp"
|
||
|
|
||
|
namespace MWGui
|
||
|
{
|
||
|
|
||
|
class EnchantingDialog : public WindowBase, public ReferenceInterface
|
||
|
{
|
||
|
public:
|
||
|
EnchantingDialog(MWBase::WindowManager& parWindowManager);
|
||
|
|
||
|
virtual void open();
|
||
|
void startEnchanting(MWWorld::Ptr actor);
|
||
|
|
||
|
protected:
|
||
|
virtual void onReferenceUnavailable();
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|