mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-11-23 05:12:05 +00:00
18 lines
353 B
C++
18 lines
353 B
C++
#include "Binds.h"
|
|
|
|
#include "AssetBinds.h"
|
|
#include "DialogBinds.h"
|
|
#include "UnlinkingBinds.h"
|
|
#include "ZoneBinds.h"
|
|
|
|
namespace ui
|
|
{
|
|
void RegisterAllBinds(webview::webview& wv)
|
|
{
|
|
RegisterAssetBinds(wv);
|
|
RegisterDialogHandlerBinds(wv);
|
|
RegisterUnlinkingBinds(wv);
|
|
RegisterZoneBinds(wv);
|
|
}
|
|
} // namespace ui
|