mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-08 18:39:29 +00:00
21 lines
287 B
C++
21 lines
287 B
C++
#ifndef CSV_WORLD_SCENETOOL_H
|
|
#define CSV_WORLD_SCENETOOL_H
|
|
|
|
#include <QPushButton>
|
|
|
|
namespace CSVWorld
|
|
{
|
|
///< \brief Tool base class
|
|
class SceneTool : public QPushButton
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
SceneTool (QWidget *parent = 0);
|
|
|
|
};
|
|
}
|
|
|
|
#endif
|