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

18 lines
352 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 03:00:21 +00:00
import net.shadowfacts.phycon.util.ClientConfigurableDevice
2021-02-15 01:01:33 +00:00
/**
* @author shadowfacts
*/
2021-03-04 03:00:21 +00:00
interface NetworkStackProvider: NetworkDevice, ClientConfigurableDevice {
var providerPriority: Int
fun canConfigureProviderPriority(): Boolean {
return true
}
2021-02-28 18:48:39 +00:00
}