Revision 11045617aa83f22895897e45d021b524d3a6acb9 authored by COCCO Giovanni on 28 February 2025, 12:08:40 UTC, committed by COCCO Giovanni on 28 February 2025, 12:08:40 UTC
1 parent 3b61880
bottombar.h
#pragma once
#include <QWidget>
#include <QLabel>
class BottomBar : public QWidget {
public:
BottomBar();
void setFPSLabel(const QString& str);
void setMouseLabel(const QString& str);
private:
QLabel *m_fps;
QLabel *m_mouse;
};

Computing file changes ...