Initial Commit
This commit is contained in:
27
include/list_download_tab.hpp
Normal file
27
include/list_download_tab.hpp
Normal file
@@ -0,0 +1,27 @@
|
||||
#pragma once
|
||||
|
||||
#include <borealis.hpp>
|
||||
#include <json.hpp>
|
||||
|
||||
#include "constants.hpp"
|
||||
|
||||
class ListDownloadTab : public brls::List
|
||||
{
|
||||
private:
|
||||
brls::ListItem* listItem;
|
||||
nlohmann::ordered_json nxlinks;
|
||||
std::string currentCheatsVer = "";
|
||||
std::string newCheatsVer = "";
|
||||
contentType type;
|
||||
void createList();
|
||||
void createList(contentType type);
|
||||
void createCheatSlipItem();
|
||||
void createGbatempItem();
|
||||
void createGfxItem();
|
||||
void setDescription();
|
||||
void setDescription(contentType type);
|
||||
void displayNotFound();
|
||||
|
||||
public:
|
||||
ListDownloadTab(const contentType type, const nlohmann::ordered_json& nxlinks = nlohmann::ordered_json::object());
|
||||
};
|
||||
Reference in New Issue
Block a user