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 }