144cf2299a
git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1904 542714f4-19e9-0310-aa3c-eee0fc999fb1
17 lines
394 B
Java
17 lines
394 B
Java
//
|
|
// $Id: AnimationCompletedEvent.java,v 1.2 2002/11/05 20:51:13 mdb Exp $
|
|
|
|
package com.threerings.media.animation;
|
|
|
|
/**
|
|
* An animation completed event is dispatched when an animation has
|
|
* completed all of its business.
|
|
*/
|
|
public class AnimationCompletedEvent extends AnimationEvent
|
|
{
|
|
public AnimationCompletedEvent (Animation anim, long when)
|
|
{
|
|
super(anim, when);
|
|
}
|
|
}
|