diff options
author | Michael Smith <mikesmiffy128@gmail.com> | 2023-08-30 23:18:38 +0100 |
---|---|---|
committer | Michael Smith <mikesmiffy128@gmail.com> | 2023-08-30 23:44:50 +0100 |
commit | 464c9398ae49d8faae46f81fb7040155408858f7 (patch) | |
tree | 3c8f035e752124a7f9f32179fa01d5c56c9d2439 /src/engineapi.h | |
parent | 8a1c4de9b33128c10378f1938d8a60c071f01ad0 (diff) |
Perform very minor load/unload optimisations
Because why not.
Diffstat (limited to 'src/engineapi.h')
-rw-r--r-- | src/engineapi.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/engineapi.h b/src/engineapi.h index fbc062b..e95e282 100644 --- a/src/engineapi.h +++ b/src/engineapi.h @@ -164,6 +164,12 @@ extern struct CServerPlugin *pluginhandler; */ bool engineapi_init(int pluginver); +/* + * Called right before deferred feature initialisation to set up some additional + * (nonessential) core stuff - currently this means entprops data. + */ +void engineapi_lateinit(void); + #endif // vi: sw=4 ts=4 noet tw=80 cc=80 fdm=marker |