/* The Genuts Project - http://www.genuts.com */ /** The RemotelyControllable interface defines a method * that will allow the "Remote Control" to control the * "RC Toy". */ public interface RemotelyControllable { public void setXY(int x, int y); }