From f54e6d9d9b8fb180d96fa7043387588cff1a13af Mon Sep 17 00:00:00 2001 From: "Tristan B. Velloza Kildaire" Date: Wed, 21 Jun 2023 13:34:38 +0200 Subject: [PATCH] Events - Documented enum `IRCEventType` and its memers --- source/birchwood/client/events.d | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/source/birchwood/client/events.d b/source/birchwood/client/events.d index 34e4fa9..a1ee89a 100644 --- a/source/birchwood/client/events.d +++ b/source/birchwood/client/events.d @@ -7,9 +7,19 @@ module birchwood.client.events; import eventy : EventyEvent = Event; import birchwood.protocol.messages : Message; +/** + * Event IDs + */ public final enum IRCEventType : ulong { + /** + * A generic IRC event + */ GENERIC_EVENT = 1, + + /** + * A pong event + */ PONG_EVENT }