mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-21 03:53:54 +00:00
19 lines
307 B
C++
19 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
|