Files
cheats-updater/include/changelog_page.hpp
2026-03-05 20:18:29 +01:00

14 lines
279 B
C++

#pragma once
#include <borealis.hpp>
class ChangelogPage : public brls::AppletFrame
{
private:
brls::List* list;
brls::ListItem* listItem;
public:
ChangelogPage();
void ShowChangelogContent(const std::string version, const std::string content);
};