blob: 19ad0c1a98f375259e65a110fad34f39cffbbbb2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// Copyright 2026 Dolphin Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once
#include <QStatusBar>
class GameCount : public QStatusBar
{
Q_OBJECT
public:
explicit GameCount(QWidget* parent = nullptr);
void OnGameCountUpdated(int total_games, int visible_games);
};
|