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

20 lines
344 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:36:58 -04:00
#pragma once
#include "sklbpart.h"
2023-10-12 23:44:48 -04:00
2023-07-06 17:36:58 -04:00
class GearView;
class BoneEditor : public SklbPart
2023-10-12 23:44:48 -04:00
{
2023-07-07 16:16:21 -04:00
Q_OBJECT
2023-07-06 17:36:58 -04:00
public:
2023-10-12 23:44:48 -04:00
explicit BoneEditor(GearView *gearView, QWidget *parent = nullptr);
2023-07-06 17:36:58 -04:00
private:
2023-12-09 21:18:34 -05:00
GearView *gearView = nullptr;
2023-07-06 17:36:58 -04:00
};