Implemented new C++ logic

This commit is contained in:
Martino Ferrari
2026-06-12 15:25:13 +02:00
parent 617b5bd712
commit f25bd7f08e
220 changed files with 39185 additions and 850 deletions
+16
View File
@@ -0,0 +1,16 @@
/**
* @file StatsPanel.h
* @brief Per-source statistics table panel.
*/
#pragma once
namespace StreamHubClient {
class App;
/**
* @brief Render the statistics table (call inside an ImGui::Begin/End window).
*/
void RenderStatsPanel(App& app);
} /* namespace StreamHubClient */