Provide a timestamp with animation events.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1904 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2002-11-05 20:51:13 +00:00
parent ece79bc86c
commit 144cf2299a
3 changed files with 22 additions and 8 deletions
@@ -1,5 +1,5 @@
//
// $Id: AnimationCompletedEvent.java,v 1.1 2002/01/11 16:17:33 shaper Exp $
// $Id: AnimationCompletedEvent.java,v 1.2 2002/11/05 20:51:13 mdb Exp $
package com.threerings.media.animation;
@@ -9,8 +9,8 @@ package com.threerings.media.animation;
*/
public class AnimationCompletedEvent extends AnimationEvent
{
public AnimationCompletedEvent (Animation anim)
public AnimationCompletedEvent (Animation anim, long when)
{
super(anim);
super(anim, when);
}
}