Skip to content
Snippets Groups Projects
Commit 9c85a980 authored by AREZKI Celia's avatar AREZKI Celia
Browse files

add interface DrawerState

parent 4b2bef6a
No related branches found
No related tags found
No related merge requests found
package shape.tp5;
import javafx.scene.canvas.GraphicsContext;
public interface DrawerState {
public void mousePressed(DrawerContext context, double x, double y);
public void mouseReleased(DrawerContext context, double x, double y);
public void mouseMoved(DrawerContext context, double x, double y);
public void paint(DrawerContext context, GraphicsContext graphicsContext);
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment