mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-29 03:45:32 +00:00
21 lines
256 B
C++
21 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
|