mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-22 07:27:59 -05:00
do a few v4 todos
This commit is contained in:
parent
31d7c9d099
commit
5b10a91d8c
3 changed files with 0 additions and 5 deletions
|
@ -157,7 +157,6 @@ namespace geode {
|
|||
std::vector<std::string> getSettingKeys() const;
|
||||
bool hasSetting(std::string_view const key) const;
|
||||
|
||||
// todo in v4: possibly rename this to getSetting?
|
||||
/**
|
||||
* Get the definition of a setting, or null if the setting was not found,
|
||||
* or if it's a custom setting that has not yet been registered using
|
||||
|
|
|
@ -10,9 +10,6 @@ namespace geode {
|
|||
|
||||
enum class ModEventType {
|
||||
Loaded,
|
||||
Unloaded,
|
||||
Enabled,
|
||||
Disabled,
|
||||
DataLoaded,
|
||||
DataSaved,
|
||||
};
|
||||
|
|
|
@ -321,7 +321,6 @@ Result<> Mod::Impl::loadBinary() {
|
|||
|
||||
|
||||
ModStateEvent(m_self, ModEventType::Loaded).post();
|
||||
ModStateEvent(m_self, ModEventType::Enabled).post();
|
||||
ModStateEvent(m_self, ModEventType::DataLoaded).post();
|
||||
|
||||
m_isCurrentlyLoading = false;
|
||||
|
|
Loading…
Reference in a new issue