PhysicalConnectivity/src/main/kotlin/net/shadowfacts/phycon/networking/ServerReceiver.kt

11 lines
272 B
Kotlin

package net.shadowfacts.phycon.networking
import net.fabricmc.fabric.api.networking.v1.ServerPlayNetworking
import net.minecraft.util.Identifier
/**
* @author shadowfacts
*/
interface ServerReceiver: ServerPlayNetworking.PlayChannelHandler {
val CHANNEL: Identifier
}