/******************************************************************************* * Copyright (c) 2016 Alex Shapiro - github.com/shpralex * This program and the accompanying materials * are made available under the terms of the The MIT License (MIT) * The above copyright notice and this permission notice shall be included in all * copies or substantial portions of the Software. *******************************************************************************/ package com.sproutlife.panel.gamepanel.handler; import java.awt.event.MouseEvent; import com.sproutlife.panel.gamepanel.handler.HandlerConsts.RequiredKey; public abstract class DragHandler extends Handler { public DragHandler(RequiredKey requiredKey) { super(requiredKey); } public void mousePressed(MouseEvent mouseEvent) { } public void mouseReleased(MouseEvent mouseEvent) { } public void mouseDragged(MouseEvent mouseEvent) { } }