Skip to content

Instantly share code, notes, and snippets.

@bragboy
Created November 12, 2015 11:15
Show Gist options
  • Select an option

  • Save bragboy/f060bd347bb88c867240 to your computer and use it in GitHub Desktop.

Select an option

Save bragboy/f060bd347bb88c867240 to your computer and use it in GitHub Desktop.
package nasa.main;
public interface ISignal {
/**
* This returns the upper right corner of the Rectangle in string format
*/
public String getBounds();
/**
* This returns the data which includes movement and rotation commands
*/
public String getData();
/**
* This returns the initial position of the rover
*/
public String getInitialPos();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment