forked from teamnwah/openmw-tes3coop
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
|