mirror of
https://github.com/geode-sdk/geode.git
synced 2025-02-17 00:30:26 -05:00
remove Mod::wasSuccessfullyLoaded
This commit is contained in:
parent
eea39644fd
commit
f1df13aa63
2 changed files with 0 additions and 5 deletions
|
@ -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;
|
||||
/**
|
||||
|
|
|
@ -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();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue