mirror of
https://github.com/AxioDL/amuse.git
synced 2025-08-08 13:09:20 +00:00
15 lines
284 B
C++
15 lines
284 B
C++
#ifndef AMUSE_KEYMAP_EDITOR_HPP
|
|
#define AMUSE_KEYMAP_EDITOR_HPP
|
|
|
|
#include "EditorWidget.hpp"
|
|
|
|
class KeymapEditor : public EditorWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit KeymapEditor(ProjectModel::KeymapNode* node, QWidget* parent = Q_NULLPTR);
|
|
};
|
|
|
|
|
|
#endif //AMUSE_KEYMAP_EDITOR_HPP
|