mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-07 12:54:00 +00:00
20 lines
255 B
C++
20 lines
255 B
C++
|
#ifndef CSV_WORLD_SCENETOOL_H
|
||
|
#define CSV_WORLD_SCENETOOL_H
|
||
|
|
||
|
#include <QPushButton>
|
||
|
|
||
|
namespace CSVWorld
|
||
|
{
|
||
|
class SceneTool : public QPushButton
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
|
||
|
SceneTool (QWidget *parent = 0);
|
||
|
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|