add docBlocks to callbacks

This commit is contained in:
CWX
2025-01-07 14:33:32 +00:00
parent a050d0c38e
commit 295e18b6b6
30 changed files with 1679 additions and 19 deletions
+15
View File
@@ -10,16 +10,31 @@ public class ClientLogCallbacks
}
/// <summary>
/// Handle /singleplayer/log
/// </summary>
/// <param name="url"></param>
/// <param name="info"></param>
/// <param name="sessionID"></param>
/// <returns></returns>
public NullResponseData ClientLog(string url, ClientLogRequest info, string sessionID)
{
throw new NotImplementedException();
}
/// <summary>
/// Handle /singleplayer/release
/// </summary>
/// <returns></returns>
public string ReleaseNotes()
{
throw new NotImplementedException();
}
/// <summary>
/// Handle /singleplayer/enableBSGlogging
/// </summary>
/// <returns></returns>
public string BsgLogging()
{
throw new NotImplementedException();