mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-07 03:54:40 +00:00
16 lines
258 B
C++
16 lines
258 B
C++
#include "bookwindow.hpp"
|
|
|
|
using namespace MWGui;
|
|
|
|
BookWindow::BookWindow(WindowManager& parWindowManager) :
|
|
WindowBase("openmw_book_layout.xml", parWindowManager)
|
|
{
|
|
//setVisible(false);
|
|
center();
|
|
}
|
|
|
|
void BookWindow::open(MWWorld::Ptr book)
|
|
{
|
|
}
|
|
|