Files
narya/src/as/com/threerings/io/Streamable.as
T
Ray Greenwell a75f496e76 Checkpoint.
git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@3912 542714f4-19e9-0310-aa3c-eee0fc999fb1
2006-03-04 02:43:14 +00:00

16 lines
369 B
ActionScript

package com.threerings.io {
/**
* Note: all Streamable instances should have a constructor that copes
* with no arguments.
*/
public interface Streamable
{
function writeObject (out :ObjectOutputStream) :void;
//throws IOError;
function readObject (ins :ObjectInputStream) :void;
//throws IOError; /** ClassCastException equivalent. */
}
}