Allow zero-arg construction (for unserialization).

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4154 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2006-05-27 01:51:33 +00:00
parent 074b7f4547
commit 6b3aba0225
@@ -48,7 +48,8 @@ public class ObjectRemovedEvent extends NamedEvent
* remove the specified oid.
* @param oid the oid to remove from the oid list attribute.
*/
public function ObjectRemovedEvent (targetOid :int, name :String, oid :int)
public function ObjectRemovedEvent (
targetOid :int = 0, name :String = null, oid :int = 0)
{
super(targetOid, name);
_oid = oid;