Initial Commit

This commit is contained in:
Lillith Fox 2024-11-11 14:15:51 -05:00
commit 22c2de9cc6
12 changed files with 594 additions and 0 deletions

View file

@ -0,0 +1,12 @@
using System.Net;
using VRChat.API.Client;
namespace VRCAuthProxy;
public class ApiClientWithCookies : ApiClient
{
public CookieContainer GetCookieContainer()
{
return CookieContainer;
}
}