mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-21 11:53:51 +00:00
18 lines
290 B
C++
18 lines
290 B
C++
|
#ifndef OPENCS_VIEW_WORLDSPACEWIDGET_H
|
||
|
#define OPENCS_VIEW_WORLDSPACEWIDGET_H
|
||
|
|
||
|
#include "scenewidget.hpp"
|
||
|
|
||
|
namespace CSVRender
|
||
|
{
|
||
|
class WorldspaceWidget : public SceneWidget
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
|
||
|
WorldspaceWidget (QWidget *parent = 0);
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|