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:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user