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

add NullDrawerState class

parent 3bdb7b05
No related branches found
No related tags found
No related merge requests found
package shape.tp5;
import javafx.scene.canvas.GraphicsContext;
public class NullDrawerState implements DrawerState {
@Override
public void mousePressed(DrawerContext context, double x, double y) {
}
@Override
public void mouseReleased(DrawerContext context, double x, double y) {
}
@Override
public void mouseMoved(DrawerContext context, double x, double y) {
}
@Override
public void paint(DrawerContext context, GraphicsContext graphicsContext) {
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment