package net.shadowfacts.phycon.util import net.minecraft.util.StringIdentifiable /** * @author shadowfacts */ enum class CableConnection: StringIdentifiable { ON, OFF, DISABLED; override fun asString() = name.lowercase() }