Pill Popper / src / main / kotlin / uk / co / nickthecoder / pillpopper / Tunnel.kt
package uk.co.nickthecoder.pillpopper import uk.co.nickthecoder.tickle.AbstractRole class Tunnel : AbstractRole() { override fun activated() { Play.instance.neighbourhood.blockAt(actor.x, actor.y).add(this) } override fun tick() {} }