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

14 lines
287 B
Kotlin
Raw Normal View History

2021-02-28 18:48:39 +00:00
package net.shadowfacts.phycon.component
2021-02-15 01:01:33 +00:00
import net.shadowfacts.phycon.api.NetworkDevice
2021-03-04 04:13:09 +00:00
import net.shadowfacts.phycon.util.ClientConfigurableDevice
2021-02-15 01:01:33 +00:00
/**
* @author shadowfacts
*/
2021-03-04 04:13:09 +00:00
interface NetworkStackReceiver: NetworkDevice, ClientConfigurableDevice {
var receiverPriority: Int
2021-02-28 18:48:39 +00:00
}