summaryrefslogtreecommitdiff
path: root/src/mods.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mods.h')
-rw-r--r--src/mods.h60
1 files changed, 0 insertions, 60 deletions
diff --git a/src/mods.h b/src/mods.h
index 1a5c32692..697fed38b 100644
--- a/src/mods.h
+++ b/src/mods.h
@@ -141,15 +141,6 @@ public:
};
#endif
-#if USE_CURL
-Json::Value getModstoreUrl(const std::string &url);
-#else
-inline Json::Value getModstoreUrl(const std::string &url)
-{
- return Json::Value();
-}
-#endif
-
struct ModLicenseInfo {
int id;
std::string shortinfo;
@@ -161,57 +152,6 @@ struct ModAuthorInfo {
std::string username;
};
-struct ModStoreMod {
- int id;
- std::string title;
- std::string basename;
- ModAuthorInfo author;
- float rating;
- bool valid;
-};
-
-struct ModStoreCategoryInfo {
- int id;
- std::string name;
-};
-
-struct ModStoreVersionEntry {
- int id;
- std::string date;
- std::string file;
- bool approved;
- //ugly version number
- int mtversion;
-};
-
-struct ModStoreTitlePic {
- int id;
- std::string file;
- std::string description;
- int mod;
-};
-
-struct ModStoreModDetails {
- /* version_set?? */
- std::vector<ModStoreCategoryInfo> categories;
- ModAuthorInfo author;
- ModLicenseInfo license;
- ModStoreTitlePic titlepic;
- int id;
- std::string title;
- std::string basename;
- std::string description;
- std::string repository;
- float rating;
- std::vector<std::string> depends;
- std::vector<std::string> softdeps;
-
- std::string download_url;
- std::string screenshot_url;
- std::vector<ModStoreVersionEntry> versions;
- bool valid;
-};
-
class ModMetadata: public Metadata
{
public: