mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 13:49:55 +00:00
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
|