15 lines
201 B
C
Raw Normal View History

2024-04-11 14:51:43 +08:00
#pragma once
2023-08-28 17:14:21 +08:00
#include <QQuickItem>
#include "src/stdafx.h"
2024-04-11 14:51:43 +08:00
class FpsItem : public QQuickItem {
2024-06-28 17:09:23 +08:00
Q_OBJECT
Q_PROPERTY_AUTO(int, fps)
2023-08-28 17:14:21 +08:00
public:
FpsItem();
private:
int _frameCount = 0;
2024-06-28 17:09:23 +08:00
};