Skip to content

Instantly share code, notes, and snippets.

@bkrmendy
Created September 22, 2017 16:31
Show Gist options
  • Save bkrmendy/a7421e99460c1974f160718f2df55d61 to your computer and use it in GitHub Desktop.
Save bkrmendy/a7421e99460c1974f160718f2df55d61 to your computer and use it in GitHub Desktop.
Flying.java from the Interfaces example project
package flying;
import flying.Coordinate;
public interface Flying {
public boolean isFlyingRightNow = false;
public void fly(Coordinate c);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment