1 Star 0 Fork 1

三三两两/QT骨骼动画实现

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
mainwindow.h 461 Bytes
一键复制 编辑 原始数据 按行查看 历史
trionfordring 提交于 2020-09-28 10:31 . 补充文件
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include <QGraphicsView>
#include "mainscene.h"
QT_BEGIN_NAMESPACE
class Controller;
QT_END_NAMESPACE
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
MainWindow(QWidget *parent = nullptr);
~MainWindow();
void stopped();
private:
MainScene* mainScene;
QGraphicsView* mainView;
friend class Controller;
Controller* controller;
};
#endif // MAINWINDOW_H
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/twos-threes/qt-anim-01.git
git@gitee.com:twos-threes/qt-anim-01.git
twos-threes
qt-anim-01
QT骨骼动画实现
master

搜索帮助