Created
November 12, 2015 11:15
-
-
Save bragboy/f060bd347bb88c867240 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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