mirror of
https://github.com/HarbourMasters/Shipwright
synced 2026-08-13 20:44:41 -04:00
015440fdff
Triforce Pieces can now be tokens for bridge or ganon's soul. & can be tokens for multiple rewards Wincon can now be arbitrary conditions Ganon's Soul (removed from existing boss soul options) can now be arbitrary conditions Co-authored-by: Pepper0ni <93387759+Pepper0ni@users.noreply.github.com>
46 lines
1.1 KiB
C++
46 lines
1.1 KiB
C++
#include <ship/config/Config.h>
|
|
|
|
namespace SOH {
|
|
class ConfigVersion1Updater final : public Ship::ConfigVersionUpdater {
|
|
public:
|
|
ConfigVersion1Updater();
|
|
void Update(Ship::Config* conf);
|
|
};
|
|
|
|
class ConfigVersion2Updater final : public Ship::ConfigVersionUpdater {
|
|
public:
|
|
ConfigVersion2Updater();
|
|
void Update(Ship::Config* conf);
|
|
};
|
|
|
|
class ConfigVersion3Updater final : public Ship::ConfigVersionUpdater {
|
|
public:
|
|
ConfigVersion3Updater();
|
|
void Update(Ship::Config* conf);
|
|
};
|
|
|
|
class ConfigVersion4Updater final : public Ship::ConfigVersionUpdater {
|
|
public:
|
|
ConfigVersion4Updater();
|
|
void Update(Ship::Config* conf);
|
|
};
|
|
|
|
class ConfigVersion5Updater final : public Ship::ConfigVersionUpdater {
|
|
public:
|
|
ConfigVersion5Updater();
|
|
void Update(Ship::Config* conf);
|
|
};
|
|
|
|
class ConfigVersion6Updater final : public Ship::ConfigVersionUpdater {
|
|
public:
|
|
ConfigVersion6Updater();
|
|
void Update(Ship::Config* conf);
|
|
};
|
|
|
|
class ConfigVersion7Updater final : public Ship::ConfigVersionUpdater {
|
|
public:
|
|
ConfigVersion7Updater();
|
|
void Update(Ship::Config* conf);
|
|
};
|
|
} // namespace SOH
|