| 343 | struct PluginClient : public IPluginContract |
| 344 | { |
| 345 | PluginClient() |
| 346 | { |
| 347 | IPluginContract::onDraw = []() |
| 348 | { |
| 349 | // Draw stuff... |
| 350 | }; |
| 351 | } |
| 352 | |
| 353 | // Called when plugin is init |
| 354 | bool init() { return true; } |
nothing calls this directly
no outgoing calls
no test coverage detected