Mekanism-tilera-Edition/common/codechicken/multipart/TEdgePart.scala
2014-01-04 13:16:24 -05:00

12 lines
No EOL
301 B
Scala

package codechicken.multipart
/**
* Interface which must be implemented by parts that go in an edge slot.
*/
trait TEdgePart extends TSlottedPart
{
/**
* Return true if this part can conduct redstone signal or let redstone signal pass through it.
*/
def conductsRedstone = false
}