Files
VRCX/Util.cs
2020-11-02 00:56:12 +09:00

21 lines
792 B
C#

using CefSharp;
namespace VRCX
{
public static class Util
{
public static void RegisterBindings(IJavascriptObjectRepository repository)
{
var options = new BindingOptions()
{
CamelCaseJavascriptNames = false
};
repository.Register("VRCX", VRCX.Instance, true, options);
repository.Register("SharedVariable", SharedVariable.Instance, false, options);
repository.Register("VRCXStorage", VRCXStorage.Instance, false, options);
repository.Register("SQLite", SQLite.Instance, true, options);
repository.Register("LogWatcher", LogWatcher.Instance, true, options);
repository.Register("Discord", Discord.Instance, true, options);
}
}
}