1
0
mirror of https://github.com/zhuzichu520/FluentUI.git synced 2025-04-05 23:25:06 +08:00
朱子楚\zhuzi a3f375c9ef update
2024-04-11 14:51:43 +08:00

15 lines
193 B
C++

#pragma once
#include <QQuickItem>
#include "src/stdafx.h"
class FpsItem : public QQuickItem {
Q_OBJECT
Q_PROPERTY_AUTO(int, fps)
public:
FpsItem();
private:
int _frameCount = 0;
};