Skip to content

Instantly share code, notes, and snippets.

@libliboom
Last active November 4, 2019 07:27
Show Gist options
  • Save libliboom/cad879f657762f4f417c37e7a390bb58 to your computer and use it in GitHub Desktop.
Save libliboom/cad879f657762f4f417c37e7a390bb58 to your computer and use it in GitHub Desktop.
class GraphicEditor {
...
public void mouseDown() {
tool.mouseDown(this);
}
...
}
class RectangleTool {
...
public void mouseDown(GraphicEditor editor) {
editor.add(new RectangleTool());
}
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment