Fixed typo that broke the build. Egads!
git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1120 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
//
|
||||
// $Id: Animation.java,v 1.2 2002/03/12 22:54:16 shaper Exp $
|
||||
// $Id: Animation.java,v 1.3 2002/03/14 21:09:01 shaper Exp $
|
||||
|
||||
package com.threerings.media.animation;
|
||||
|
||||
@@ -48,6 +48,15 @@ public abstract class Animation
|
||||
_animmgr.addDirtyRect(new Rectangle(_bounds));
|
||||
}
|
||||
|
||||
/**
|
||||
* Invalidates the specified rectangle for later re-rendering by the
|
||||
* {@link AnimationManager}.
|
||||
*/
|
||||
public void invalidate (int x, int y, int width, int height)
|
||||
{
|
||||
_animmgr.addDirtyRect(new Rectangle(x, y, width, height));
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns whether the animation has finished all of its business.
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user