mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-05-03 05:26:05 +02:00
Folder cs files
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
using System;
|
||||
using CefSharp;
|
||||
|
||||
namespace VRCX
|
||||
{
|
||||
public static class Util
|
||||
{
|
||||
public static void ApplyJavascriptBindings(IJavascriptObjectRepository repository)
|
||||
{
|
||||
repository.NameConverter = null;
|
||||
repository.Register("AppApi", AppApi.Instance, true);
|
||||
repository.Register("SharedVariable", SharedVariable.Instance, false);
|
||||
repository.Register("WebApi", WebApi.Instance, true);
|
||||
repository.Register("VRCXStorage", VRCXStorage.Instance, true);
|
||||
repository.Register("SQLite", SQLiteLegacy.Instance, true);
|
||||
repository.Register("LogWatcher", LogWatcher.Instance, true);
|
||||
repository.Register("Discord", Discord.Instance, true);
|
||||
repository.Register("AssetBundleCacher", AssetBundleCacher.Instance, true);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user