Plugin API: Add Dispose() on server shutdown
Submitted
Currently the Plugin API only offers
void Init(object gameInstance); void Update();I would love to see a Dispose() on server shutdown so a plugin can properly exit ( eg save stuff or do final tasks)
It already has a Dispose() because IPlugin implements IDisposable, you can't compile it without including Dispose()... so I'm not sure what you mean.
It already has a Dispose() because IPlugin implements IDisposable, you can't compile it without including Dispose()... so I'm not sure what you mean.
Replies have been locked on this page!