Skip to content

Instantly share code, notes, and snippets.

@Ghost-Programmer
Created April 12, 2020 15:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Ghost-Programmer/02a45545b6d08abb0a6abac66859629b to your computer and use it in GitHub Desktop.
Save Ghost-Programmer/02a45545b6d08abb0a6abac66859629b to your computer and use it in GitHub Desktop.
package name.mymiller.geo;
import java.util.function.Consumer;
public interface GeoShape {
void forEach(final Consumer<? super GeoLocation> action);
GeoPath getGeoPath();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment