mirror of
https://github.com/HamletDuFromage/aio-switch-updater.git
synced 2024-11-08 19:41:49 +00:00
24 lines
No EOL
684 B
C++
24 lines
No EOL
684 B
C++
#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);
|
|
}; |