edu.gatech.cs2335.lemmings.gui
Interface IMouseMotionable

All Known Implementing Classes:
GamePlayPanel

public interface IMouseMotionable

Interface IMouseMotionable: Allows the implementing classes to know where the mouse is.

 Revision History:
     v1.0 (Apr. 10, 2004) - Created the IMouseMotionable interface
 

Version:
Version 1.0, Apr. 10, 2004
Author:
Vladimir Urazov

Method Summary
 void processMouseMotion(int oldX, int oldY, int newX, int newY)
          Allows the implementing class to be told when the mouse has moved.
 

Method Detail

processMouseMotion

public void processMouseMotion(int oldX,
                               int oldY,
                               int newX,
                               int newY)
Allows the implementing class to be told when the mouse has moved.

Parameters:
oldX - an int value
oldY - an int value
newX - an int value
newY - an int value