2023-01-07 21:43:31 -05:00
|
|
|
//
|
|
|
|
// Generated file. Do not edit.
|
|
|
|
//
|
|
|
|
|
|
|
|
// clang-format off
|
|
|
|
|
|
|
|
#include "generated_plugin_registrant.h"
|
|
|
|
|
2023-07-22 23:29:10 -04:00
|
|
|
#include <screen_retriever/screen_retriever_plugin.h>
|
2023-01-08 22:27:33 -05:00
|
|
|
#include <veilid/veilid_plugin.h>
|
2023-07-22 23:29:10 -04:00
|
|
|
#include <window_manager/window_manager_plugin.h>
|
2023-01-07 21:43:31 -05:00
|
|
|
|
|
|
|
void RegisterPlugins(flutter::PluginRegistry* registry) {
|
2023-07-22 23:29:10 -04:00
|
|
|
ScreenRetrieverPluginRegisterWithRegistrar(
|
|
|
|
registry->GetRegistrarForPlugin("ScreenRetrieverPlugin"));
|
2023-01-08 22:27:33 -05:00
|
|
|
VeilidPluginRegisterWithRegistrar(
|
|
|
|
registry->GetRegistrarForPlugin("VeilidPlugin"));
|
2023-07-22 23:29:10 -04:00
|
|
|
WindowManagerPluginRegisterWithRegistrar(
|
|
|
|
registry->GetRegistrarForPlugin("WindowManagerPlugin"));
|
2023-01-07 21:43:31 -05:00
|
|
|
}
|