1
Fork 0
mirror of https://github.com/redstrate/Novus.git synced 2025-04-27 06:07:45 +00:00
novus/apps/armoury/include/boneeditor.h
Joshua Goins b6cc54405c Move applications to their own folder
To try to cut down the amount of top-level folders
2024-05-10 16:44:45 -04:00

19 lines
344 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 = nullptr;
};