You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Events.kt 190B

1234567
  1. @file:Suppress("ArrayInDataClass")
  2. package com.dmdirc.ktirc.events
  3. sealed class IrcEvent
  4. object ServerConnected : IrcEvent()
  5. data class PingReceived(val nonce: ByteArray): IrcEvent()