1
0
mirror of https://github.com/deavmi/birchwood synced 2024-09-20 16:23:39 +02:00

Merge branch 'master' into rfc2812

This commit is contained in:
Tristan B. Velloza Kildaire 2023-03-15 21:19:46 +02:00
commit 09e8d2e1b7

View File

@ -102,6 +102,7 @@ public class Client : Thread
* fullMessage = * fullMessage =
* nickname = * nickname =
* msgBody = * msgBody =
* message =
*/ */
public void onDirectMessage(Message fullMessage, string nickname, string msgBody) public void onDirectMessage(Message fullMessage, string nickname, string msgBody)
{ {
@ -114,6 +115,7 @@ public class Client : Thread
* *
* Params: * Params:
* message = * message =
* commandReply =
*/ */
public void onGenericCommand(Message message) public void onGenericCommand(Message message)
{ {
@ -124,6 +126,12 @@ public class Client : Thread
// TODO: Hook certain ones default style with an implemenation // TODO: Hook certain ones default style with an implemenation
// ... for things that the client can learn from // ... for things that the client can learn from
// TODO: comment
/**
*
* Params:
* commandReply =
*/
public void onCommandReply(Message commandReply) public void onCommandReply(Message commandReply)
{ {
// TODO: Add numeric response check here for CERTAIN ones which add to client // TODO: Add numeric response check here for CERTAIN ones which add to client