forked from teamnwah/openmw-tes3coop
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
|