You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-04 12:00:25 +00:00
Refactor module initialization
* Changed to use the same stages as extensions. * Makes the initialization more coherent, helping solve problems due to lack of stages. * Makes it easier to port between module and extension. * removed the DRIVER initialization level (no longer needed).
This commit is contained in:
@@ -32,9 +32,16 @@
|
||||
#include "core/object/class_db.h"
|
||||
#include "jsonrpc.h"
|
||||
|
||||
void register_jsonrpc_types() {
|
||||
void initialize_jsonrpc_module(ModuleInitializationLevel p_level) {
|
||||
if (p_level != MODULE_INITIALIZATION_LEVEL_SCENE) {
|
||||
return;
|
||||
}
|
||||
|
||||
GDREGISTER_CLASS(JSONRPC);
|
||||
}
|
||||
|
||||
void unregister_jsonrpc_types() {
|
||||
void uninitialize_jsonrpc_module(ModuleInitializationLevel p_level) {
|
||||
if (p_level != MODULE_INITIALIZATION_LEVEL_SCENE) {
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -31,7 +31,9 @@
|
||||
#ifndef JSONRPC_REGISTER_TYPES_H
|
||||
#define JSONRPC_REGISTER_TYPES_H
|
||||
|
||||
void register_jsonrpc_types();
|
||||
void unregister_jsonrpc_types();
|
||||
#include "modules/register_module_types.h"
|
||||
|
||||
void initialize_jsonrpc_module(ModuleInitializationLevel p_level);
|
||||
void uninitialize_jsonrpc_module(ModuleInitializationLevel p_level);
|
||||
|
||||
#endif // JSONRPC_REGISTER_TYPES_H
|
||||
|
||||
Reference in New Issue
Block a user