Skip to content

Commit

Permalink
Merge pull request #1159 from mihe/unused-exports
Browse files Browse the repository at this point in the history
Remove unused free-standing `initialize_level` and `deinitialize_level`
  • Loading branch information
akien-mga authored Jun 30, 2023
2 parents 3e44ad1 + 4b1072e commit ff6f579
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions src/godot.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -428,14 +428,3 @@ GDExtensionBool GDExtensionBinding::InitObject::init() const {
}

} // namespace godot

extern "C" {

void GDE_EXPORT initialize_level(void *userdata, GDExtensionInitializationLevel p_level) {
godot::GDExtensionBinding::initialize_level(userdata, p_level);
}

void GDE_EXPORT deinitialize_level(void *userdata, GDExtensionInitializationLevel p_level) {
godot::GDExtensionBinding::deinitialize_level(userdata, p_level);
}
}

0 comments on commit ff6f579

Please sign in to comment.