PhysicalConnectivity/src/main/kotlin/net/shadowfacts/phycon/component/NetworkStackReceiver.kt

14 lines
287 B
Kotlin

package net.shadowfacts.phycon.component
import net.shadowfacts.phycon.api.NetworkDevice
import net.shadowfacts.phycon.util.ClientConfigurableDevice
/**
* @author shadowfacts
*/
interface NetworkStackReceiver: NetworkDevice, ClientConfigurableDevice {
var receiverPriority: Int
}