1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-02-24 00:39:49 +00:00
OpenMW/apps/opencs/view/world/scenetoolbar.hpp

27 lines
376 B
C++
Raw Normal View History

#ifndef CSV_WORLD_SCENETOOLBAR_H
#define CSV_WORLD_SCENETOOLBAR_H
#include <QWidget>
class QVBoxLayout;
namespace CSVWorld
{
class SceneTool;
class SceneToolbar : public QWidget
{
Q_OBJECT
QVBoxLayout *mLayout;
public:
SceneToolbar (QWidget *parent);
void addTool (SceneTool *tool);
};
}
#endif