mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-09 21:42:13 +00:00
16 lines
230 B
C++
16 lines
230 B
C++
|
#ifndef MWGUI_ALCHEMY_H
|
||
|
#define MWGUI_ALCHEMY_H
|
||
|
|
||
|
#include "window_base.hpp"
|
||
|
|
||
|
namespace MWGui
|
||
|
{
|
||
|
class AlchemyWindow : public WindowBase
|
||
|
{
|
||
|
public:
|
||
|
AlchemyWindow(WindowManager& parWindowManager);
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|