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