mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-05-04 22:06:06 +02:00
cleanup code
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user