Some ActionScript conversion updates.

git-svn-id: svn+ssh://src.earth.threerings.net/vilya/trunk@102 c613c5cb-e716-0410-b11b-feb51c14d237
This commit is contained in:
Michael Bayne
2006-10-06 00:35:00 +00:00
parent 469e15e58e
commit 77e22d65fc
5 changed files with 7 additions and 9 deletions
@@ -58,6 +58,7 @@ public class TableConfig extends SimpleStreamableObject
// from Streamable
override public function readObject (ins :ObjectInputStream) :void
{
super.readObject(ins);
desiredPlayerCount = ins.readInt();
minimumPlayerCount = ins.readInt();
teamMemberIndices = (ins.readObject() as TypedArray);
@@ -67,6 +68,7 @@ public class TableConfig extends SimpleStreamableObject
// from Streamable
override public function writeObject (out :ObjectOutputStream) :void
{
super.writeObject(out);
out.writeInt(desiredPlayerCount);
out.writeInt(minimumPlayerCount);
out.writeObject(teamMemberIndices);