forked from teamnwah/openmw-tes3coop
19 lines
317 B
C++
19 lines
317 B
C++
|
#ifndef OPENCS_VIEW_PAGEDWORLDSPACEWIDGET_H
|
||
|
#define OPENCS_VIEW_PAGEDWORLDSPACEWIDGET_H
|
||
|
|
||
|
#include "worldspacewidget.hpp"
|
||
|
|
||
|
namespace CSVRender
|
||
|
{
|
||
|
class PagedWorldspaceWidget : public WorldspaceWidget
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
|
||
|
PagedWorldspaceWidget (QWidget *parent);
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|