added SceneToolMode class
parent
84cadc10f4
commit
0c5f07a65a
@ -0,0 +1,6 @@
|
||||
|
||||
#include "scenetoolmode.hpp"
|
||||
|
||||
CSVWorld::SceneToolMode::SceneToolMode (QWidget *parent)
|
||||
: SceneTool (parent)
|
||||
{}
|
@ -0,0 +1,19 @@
|
||||
#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
|
Loading…
Reference in New Issue