mirror of
https://github.com/redstrate/Novus.git
synced 2025-04-23 04:27:45 +00:00
19 lines
334 B
C++
19 lines
334 B
C++
// SPDX-FileCopyrightText: 2023 Joshua Goins <josh@redstrate.com>
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include "sklbpart.h"
|
|
|
|
class GearView;
|
|
|
|
class BoneEditor : public SklbPart
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit BoneEditor(GearView *gearView, QWidget *parent = nullptr);
|
|
|
|
private:
|
|
GearView *gearView;
|
|
};
|