mirror of
https://github.com/AxioDL/amuse.git
synced 2025-07-01 02:43:30 +00:00
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
|