1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-08 18:39:29 +00:00
OpenMW/apps/opencs/view/world/scenetool.hpp
2013-09-28 11:27:24 +02:00

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