Skip to content
Snippets Groups Projects
StateCircle0.java 261 B
Newer Older
  • Learn to ignore specific revisions
  • BasileCouetoux's avatar
    BasileCouetoux committed
    package state;
    
    public class StateCircle0 implements DrawerState {
        @Override
        public void mousePressed(DrawerContext context, double x, double y) {
    
        }
    
        @Override
        public void mouseReleased(DrawerContext context, double x, double y) {
    
        }
    }