Remove Steam auth

This commit is contained in:
Natsumi
2022-07-29 06:54:08 +12:00
parent 9aef61b9df
commit b0109e60d3
6 changed files with 4 additions and 106 deletions
+2 -10
View File
@@ -86,14 +86,6 @@ namespace VRCX
Cef.GetGlobalCookieManager().DeleteCookies();
}
public string LoginWithSteam()
{
var rpc = VRChatRPC.Instance;
return rpc.Update() == true
? rpc.GetAuthSessionTicket()
: string.Empty;
}
public bool[] CheckGameRunning()
{
var isGameRunning = false;
@@ -200,8 +192,8 @@ namespace VRCX
Process.Start(new ProcessStartInfo
{
WorkingDirectory = Path.GetDirectoryName(path),
FileName = path,
UseShellExecute = false,
FileName = path,
UseShellExecute = false,
Arguments = arguments
}).Close();
}