1
Fork 0
mirror of https://github.com/redstrate/Novus.git synced 2025-04-22 03:57:45 +00:00
novus/armoury/include/cmpeditor.h

15 lines
275 B
C
Raw Normal View History

// SPDX-FileCopyrightText: 2023 Joshua Goins <josh@redstrate.com>
// SPDX-License-Identifier: GPL-3.0-or-later
2023-07-06 17:37:04 -04:00
#pragma once
#include "cmppart.h"
2023-07-06 17:37:04 -04:00
class CmpEditor : public CmpPart
2023-10-12 23:44:48 -04:00
{
2023-07-06 17:37:04 -04:00
Q_OBJECT
public:
2023-10-12 23:44:48 -04:00
explicit CmpEditor(GameData *data, QWidget *parent = nullptr);
2023-07-06 17:37:04 -04:00
};