/** As well as knocking over [Pin]s, you must also hit all [Target]s with dolls. */ class Target : Collectable() { override fun activated() { super.activated() Play.instance.objectives++ } override fun collected() { Star.createRing( actor ) Play.instance.objectiveComplete() } }