Open instance in-game

This commit is contained in:
Natsumi
2025-08-16 02:45:55 +12:00
parent 90c6422418
commit b3c58a8c08
11 changed files with 204 additions and 65 deletions

View File

@@ -5,6 +5,7 @@ using System.Globalization;
using System.IO;
using System.Security.Cryptography;
using System.Text;
using System.Threading.Tasks;
using librsync.net;
using Newtonsoft.Json;
using NLog;
@@ -165,5 +166,10 @@ namespace VRCX
return null;
}
public Task<bool> TryOpenInstanceInVrc(string launchUrl)
{
return VRCIPC.Send(launchUrl);
}
}
}