Added the CLIENT_DID_CLEAR client event.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4284 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2006-07-21 23:41:12 +00:00
parent e16d838b18
commit a9109fc4af
3 changed files with 21 additions and 0 deletions
@@ -12,6 +12,7 @@ public class ClientEvent extends Event
* preventDefault() on this event. */
public static const CLIENT_WILL_LOGOFF :String = "clientWillLogoff";
public static const CLIENT_DID_LOGOFF :String = "clientDidLogoff";
public static const CLIENT_DID_CLEAR :String = "clientDidClear";
public function ClientEvent (type :String, client :Client,
cause :Error = null)
@@ -31,6 +32,11 @@ public class ClientEvent extends Event
return _cause;
}
override public function clone () :Event
{
return new ClientEvent(type, _client, _cause);
}
/** The client that generated this client event. */
protected var _client :Client;