2022-03-21 13:39:51 -04:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
namespace mods
|
|
|
|
{
|
2022-11-12 15:32:43 -05:00
|
|
|
struct mod_zone
|
|
|
|
{
|
|
|
|
std::string name;
|
|
|
|
unsigned int alloc_flags;
|
|
|
|
};
|
2022-08-21 19:42:13 -04:00
|
|
|
|
|
|
|
bool mod_requires_restart(const std::string& path);
|
2022-11-12 15:32:43 -05:00
|
|
|
void set_mod(const std::string& path);
|
|
|
|
std::optional<std::string> get_mod();
|
|
|
|
std::vector<mod_zone> get_mod_zones();
|
2022-03-21 13:39:51 -04:00
|
|
|
}
|