remove Mod::wasSuccessfullyLoaded

This commit is contained in:
matcool 2024-01-18 15:11:43 -03:00
parent eea39644fd
commit f1df13aa63
2 changed files with 0 additions and 5 deletions

View file

@ -86,7 +86,6 @@ namespace geode {
bool isEnabled() const;
bool supportsDisabling() const;
bool needsEarlyLoad() const;
bool wasSuccessfullyLoaded() const;
ModMetadata getMetadata() const;
ghc::filesystem::path getTempDir() const;
/**

View file

@ -52,10 +52,6 @@ bool Mod::needsEarlyLoad() const {
return m_impl->needsEarlyLoad();
}
bool Mod::wasSuccessfullyLoaded() const {
return this->isEnabled();
}
ModMetadata Mod::getMetadata() const {
return m_impl->getMetadata();
}