1
0
mirror of https://github.com/deavmi/birchwood synced 2024-09-20 11:43:22 +02:00
- Documented enum `IRCEventType` and its memers
This commit is contained in:
Tristan B. Velloza Kildaire 2023-06-21 13:34:38 +02:00
parent 156af08974
commit f54e6d9d9b

View File

@ -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
}