mirror of
https://github.com/WarmUpTill/SceneSwitcher.git
synced 2026-03-21 17:34:57 -05:00
19 lines
298 B
C
19 lines
298 B
C
#include <obs-module.h>
|
|
|
|
OBS_DECLARE_MODULE()
|
|
OBS_MODULE_USE_DEFAULT_LOCALE("frontend-tools", "en-US")
|
|
|
|
void InitSceneSwitcher();
|
|
void FreeSceneSwitcher();
|
|
|
|
bool obs_module_load(void)
|
|
{
|
|
InitSceneSwitcher();
|
|
return true;
|
|
}
|
|
|
|
void obs_module_unload(void)
|
|
{
|
|
FreeSceneSwitcher();
|
|
}
|