c2117ee86d
goodies, both Java 2D and LWJGL/JME 3D. git-svn-id: svn+ssh://src.earth.threerings.net/nenya/trunk@1 ed5b42cb-e716-0410-a449-f6a68f950b19
19 lines
417 B
Java
19 lines
417 B
Java
//
|
|
// $Id: ViewTracker.java 4191 2006-06-13 22:42:20Z ray $
|
|
|
|
package com.threerings.media;
|
|
|
|
/**
|
|
* An interface used by entities that wish to respond to the scrolling of a
|
|
* {@link VirtualMediaPanel}.
|
|
*
|
|
* @see VirtualMediaPanel#addViewTracker
|
|
*/
|
|
public interface ViewTracker
|
|
{
|
|
/**
|
|
* Called by a {@link VirtualMediaPanel} when it scrolls.
|
|
*/
|
|
public void viewLocationDidChange (int dx, int dy);
|
|
}
|