mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-10-14 21:22:49 +00:00
parent
7c9c12bee7
commit
dc09896959
8 changed files with 28 additions and 11 deletions
|
|
@ -109,6 +109,16 @@ namespace MinecraftClient
|
|||
/// <param name="text">Text from the server</param>
|
||||
public virtual void GetText(string text) { }
|
||||
|
||||
/// <summary>
|
||||
/// Any text sent by the server will be sent here by MinecraftCom (extended variant)
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// You can use Json.ParseJson() to process the JSON string.
|
||||
/// </remarks>
|
||||
/// <param name="text">Text from the server</param>
|
||||
/// <param name="json">Raw JSON from the server. This parameter will be NULL on MC 1.5 or lower!</param>
|
||||
public virtual void GetText(string text, string json) { }
|
||||
|
||||
/// <summary>
|
||||
/// Is called when the client has been disconnected fom the server
|
||||
/// </summary>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue