mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-25 06:35:30 +00:00
20 lines
307 B
C++
20 lines
307 B
C++
|
#ifndef CSV_WORLD_SCENETOOL_MODE_H
|
||
|
#define CSV_WORLD_SCENETOOL_MODE_H
|
||
|
|
||
|
#include "scenetool.hpp"
|
||
|
|
||
|
namespace CSVWorld
|
||
|
{
|
||
|
///< \brief Mode selector tool
|
||
|
class SceneToolMode : public SceneTool
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
|
||
|
SceneToolMode (QWidget *parent = 0);
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|