mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-10 18:33:51 +02:00
21 lines
793 B
C#
21 lines
793 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, false, options);
|
|
repository.Register("LogWatcher", LogWatcher.Instance, true, options);
|
|
repository.Register("Discord", Discord.Instance, true, options);
|
|
}
|
|
}
|
|
} |