Files
narya/src/as/com/threerings/util/ElementExpiredEvent.as
T
Nathan Curtis 0d93214e22 This has received the Ray seal of approval, and may now live amongst the other utilities in Narya.
git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5194 542714f4-19e9-0310-aa3c-eee0fc999fb1
2008-06-23 20:24:42 +00:00

31 lines
549 B
ActionScript

//
// $Id$
package com.threerings.util {
import flash.events.Event;
public class ElementExpiredEvent extends Event
{
public static const ELEMENT_EXPIRED :String = "ElementExpired";
public function ElementExpiredEvent (element :Object)
{
super(ELEMENT_EXPIRED);
_element = element;
}
public function get element () :Object
{
return _element;
}
override public function clone () :Event
{
return new ElementExpiredEvent(_element);
}
protected var _element :Object;
}
}