Files
SPT-Server-Build/Core/Callbacks/LauncherCallbacks.cs
T

69 lines
1.7 KiB
C#

namespace Core.Callbacks;
public class LauncherCallbacks
{
public string Connect()
{
throw new NotImplementedException();
}
public string Login(string url, LoginRequestData info, string sessionID)
{
throw new NotImplementedException();
}
public string Register(string url, RegisterData info, string sessionID)
{
throw new NotImplementedException();
}
public string Get(string url, LoginRequestData info, string sessionID)
{
throw new NotImplementedException();
}
public string ChangeUsername(string url, ChangeRequestData info, string sessionID)
{
throw new NotImplementedException();
}
public string ChangePassword(string url, ChangeRequestData info, string sessionID)
{
throw new NotImplementedException();
}
public string Wipe(string url, RegisterData info, string sessionID)
{
throw new NotImplementedException();
}
public string GetMiniProfile(string url, GetMiniProfileRequestData info, string sessionID)
{
throw new NotImplementedException();
}
public string GetAllMiniProfiles(string url, object info, string sessionID)
{
throw new NotImplementedException();
}
public string GetServerVersion()
{
throw new NotImplementedException();
}
public string Ping(string url, object info, string sessionID)
{
throw new NotImplementedException();
}
public string RemoveProfile(string url, RemoveProfileData info, string sessionID)
{
throw new NotImplementedException();
}
public string GetCompatibleTarkovVersion()
{
throw new NotImplementedException();
}
}