mirror of
https://github.com/luanti-org/luanti.git
synced 2025-07-22 17:18:39 +00:00
Add updating to online content browser
This commit is contained in:
parent
45e48295d2
commit
3eb363f813
11 changed files with 196 additions and 107 deletions
|
@ -30,6 +30,7 @@ struct SubgameSpec
|
|||
std::string id;
|
||||
std::string name;
|
||||
std::string author;
|
||||
int release;
|
||||
std::string path;
|
||||
std::string gamemods_path;
|
||||
std::set<std::string> addon_mods_paths;
|
||||
|
@ -41,9 +42,9 @@ struct SubgameSpec
|
|||
std::set<std::string>(),
|
||||
const std::string &name = "",
|
||||
const std::string &menuicon_path = "",
|
||||
const std::string &author = "") :
|
||||
const std::string &author = "", int release = 0) :
|
||||
id(id),
|
||||
name(name), author(author), path(path),
|
||||
name(name), author(author), release(release), path(path),
|
||||
gamemods_path(gamemods_path), addon_mods_paths(addon_mods_paths),
|
||||
menuicon_path(menuicon_path)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue