mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-18 13:12:50 +00:00
20 lines
322 B
C++
20 lines
322 B
C++
#ifndef MWGUI_SCROLLWINDOW_H
|
|
#define MWGUI_SCROLLWINDOW_H
|
|
|
|
#include "window_base.hpp"
|
|
|
|
#include "../mwworld/ptr.hpp"
|
|
|
|
namespace MWGui
|
|
{
|
|
class ScrollWindow : public WindowBase
|
|
{
|
|
public:
|
|
ScrollWindow(WindowManager& parWindowManager);
|
|
void open(MWWorld::Ptr scroll);
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|