forgot about the move constructor
This commit is contained in:
parent
97b727143a
commit
5ae3f07c3a
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user