From 156af0897485425fa9b11646d6d4795f7c0258c6 Mon Sep 17 00:00:00 2001 From: "Tristan B. Velloza Kildaire" Date: Wed, 21 Jun 2023 13:34:02 +0200 Subject: [PATCH] Events - Documented `PongEvent` and `IRCEvent` --- source/birchwood/client/events.d | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/source/birchwood/client/events.d b/source/birchwood/client/events.d index e1642da..34e4fa9 100644 --- a/source/birchwood/client/events.d +++ b/source/birchwood/client/events.d @@ -13,6 +13,9 @@ public final enum IRCEventType : ulong PONG_EVENT } +/** + * Generic IRC event (non-pong) + */ public final class IRCEvent : EventyEvent { private Message msg; @@ -36,6 +39,9 @@ public final class IRCEvent : EventyEvent } /* TODO: make PongEvent (id 2 buit-in) */ +/** + * Pong event + */ public final class PongEvent : EventyEvent { private string pingID;