Skip to content

Instantly share code, notes, and snippets.

@bkrmendy
Created September 22, 2017 16:31
Show Gist options
  • Save bkrmendy/dccde6ea9e1b4770a718c85594d0b518 to your computer and use it in GitHub Desktop.
Save bkrmendy/dccde6ea9e1b4770a718c85594d0b518 to your computer and use it in GitHub Desktop.
Coordinate.java from the Interfaces example project
package flying;
public class Coordinate {
public double xCoord;
public double yCoord;
public Coordinate(double x, double y){
xCoord = x;
yCoord = y;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment