mirror of https://github.com/AxioDL/amuse.git
15 lines
265 B
C++
15 lines
265 B
C++
|
#ifndef AMUSE_SFX_GROUP_EDITOR_HPP
|
||
|
#define AMUSE_SFX_GROUP_EDITOR_HPP
|
||
|
|
||
|
#include "EditorWidget.hpp"
|
||
|
|
||
|
class SFXGroupEditor : public EditorWidget
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
explicit SFXGroupEditor(QWidget* parent = Q_NULLPTR);
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif //AMUSE_SFX_GROUP_EDITOR_HPP
|