forgot about the move constructor

This commit is contained in:
Green Sky 2024-01-07 19:35:51 +01:00
parent 97b727143a
commit 5ae3f07c3a
No known key found for this signature in database
1 changed files with 3 additions and 0 deletions

View File

@ -105,6 +105,9 @@ Plugin::Plugin(Plugin&& other) {
_fn_tick = other._fn_tick;
other._fn_tick = nullptr;
_fn_render = other._fn_render;
other._fn_render = nullptr;
}
// unloads the plugin