package com.droidquest.items; import java.awt.Color; import com.droidquest.Room; public class FFButton extends Button { transient GenericRobot[] robots = null; public FFButton(int X, int Y, Room r) { super(X, Y, r, Color.white); grabbable = false; } public void Animate() { if (robots==null) { robots = new GenericRobot[3]; int rcount=0; for (int a=0; a