mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-09 21:42:13 +00:00
ac0c1ea986
Conflicts: apps/openmw/mwgui/dialogue.cpp
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
|