More progress.
git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@3849 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
package com.threerings.presents.net {
|
||||
|
||||
import com.threerings.io.ObjectInputStream;
|
||||
|
||||
public class BootstrapNotification extends DownstreamMessage
|
||||
{
|
||||
public function getData () :BootstrapData
|
||||
{
|
||||
return _data;
|
||||
}
|
||||
|
||||
public function readObject (ins :ObjectInputStream) :void
|
||||
{
|
||||
super.readObject(ins);
|
||||
_data = ins.readField(BootstrapData);
|
||||
}
|
||||
|
||||
/** The data associated with this notification. */
|
||||
protected var _data :BootstrapData;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user