mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2025-02-02 19:27:38 +08:00
15 lines
201 B
C++
15 lines
201 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;
|
|
};
|