1
0
mirror of https://github.com/deavmi/birchwood synced 2024-09-20 11:22:53 +02:00
- Documented `PongEvent` and `IRCEvent`
This commit is contained in:
Tristan B. Velloza Kildaire 2023-06-21 13:34:02 +02:00
parent e399b0d504
commit 156af08974

View File

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