blob: 6010d3c59112397f01257adcae3e94aa071805c9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
package space.autistic.radio
import net.fabricmc.fabric.api.event.registry.FabricRegistryBuilder
import net.fabricmc.fabric.api.event.registry.RegistryAttribute
object PirateRadioRegistries {
val ANTENNA_SERIALIZER = FabricRegistryBuilder.createSimple(PirateRadioRegistryKeys.ANTENNA_SERIALIZER)
.attribute(RegistryAttribute.SYNCED).buildAndRegister()
fun initialize() {
}
}
|