forked from mirror/openmw-tes3mp
20 lines
256 B
C++
20 lines
256 B
C++
#ifndef CSV_WORLD_SCENETOOLBAR_H
|
|
#define CSV_WORLD_SCENETOOLBAR_H
|
|
|
|
#include <QWidget>
|
|
|
|
namespace CSVWorld
|
|
{
|
|
class SceneToolbar : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
SceneToolbar (QWidget *parent);
|
|
|
|
|
|
};
|
|
}
|
|
|
|
#endif
|