mirror of https://github.com/Wox-launcher/Wox
21 lines
647 B
C++
21 lines
647 B
C++
//
|
|
// Generated file. Do not edit.
|
|
//
|
|
|
|
// clang-format off
|
|
|
|
#include "generated_plugin_registrant.h"
|
|
|
|
#include <flutter_acrylic/flutter_acrylic_plugin.h>
|
|
#include <screen_retriever/screen_retriever_plugin.h>
|
|
#include <window_manager/window_manager_plugin.h>
|
|
|
|
void RegisterPlugins(flutter::PluginRegistry* registry) {
|
|
FlutterAcrylicPluginRegisterWithRegistrar(
|
|
registry->GetRegistrarForPlugin("FlutterAcrylicPlugin"));
|
|
ScreenRetrieverPluginRegisterWithRegistrar(
|
|
registry->GetRegistrarForPlugin("ScreenRetrieverPlugin"));
|
|
WindowManagerPluginRegisterWithRegistrar(
|
|
registry->GetRegistrarForPlugin("WindowManagerPlugin"));
|
|
}
|