mirror of
https://github.com/OpenMW/openmw.git
synced 2025-02-01 12:45:36 +00:00
19 lines
255 B
C++
19 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
|