mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-25 15:35:23 +00:00
15 lines
267 B
C++
15 lines
267 B
C++
|
#include "scrollwindow.hpp"
|
||
|
|
||
|
using namespace MWGui;
|
||
|
|
||
|
ScrollWindow::ScrollWindow(WindowManager& parWindowManager) :
|
||
|
WindowBase("openmw_scroll_layout.xml", parWindowManager)
|
||
|
{
|
||
|
setVisible(false);
|
||
|
center();
|
||
|
}
|
||
|
|
||
|
void ScrollWindow::open(MWWorld::Ptr scroll)
|
||
|
{
|
||
|
}
|