1
0
Fork 0
mirror of https://github.com/HamletDuFromage/aio-switch-updater.git synced 2024-09-19 21:45:04 +01:00
AIO-switch-updater/include/download_cheats_page.hpp

24 lines
684 B
C++
Raw Normal View History

#pragma once
#include <borealis.hpp>
#include <switch.h>
#include "download.hpp"
#include "utils.hpp"
#include "json.hpp"
class DownloadCheatsPage : public brls::AppletFrame
{
private:
brls::List* list;
brls::Label* label;
brls::ListItem* del;
brls::ToggleListItem* listItem;
std::vector<std::pair<brls::ToggleListItem*, int>> toggles;
public:
DownloadCheatsPage(uint64_t tid);
std::string GetBuilID(uint64_t tid);
std::string GetCheatsTitle(nlohmann::json cheat);
void WriteCheats(uint64_t tid, std::string bid, std::string cheatContent);
void DeleteCheats(uint64_t tid, std::string bid);
};