Har! More progress mateys.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@6 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2001-05-29 03:27:59 +00:00
parent 6717f8d6e5
commit 33d93d3374
26 changed files with 947 additions and 124 deletions
@@ -1,5 +1,5 @@
//
// $Id: DObject.java,v 1.2 2001/05/23 04:03:40 mdb Exp $
// $Id: DObject.java,v 1.3 2001/05/29 03:27:59 mdb Exp $
package com.samskivert.cocktail.cher.dobj;
@@ -7,25 +7,17 @@ import java.io.IOException;
import java.io.DataInputStream;
import java.io.DataOutputStream;
import com.samskivert.cocktail.cher.io.TypedObject;
import com.samskivert.cocktail.cher.io.TypedObjectFactory;
public class DObject implements TypedObject
public class DObject
{
public static short TYPE = 400;
public short getType ()
{
return TYPE;
}
public void writeTo (DataOutputStream out)
throws IOException
{
// nothing doing!
}
public void readFrom (DataInputStream in)
throws IOException
{
// nothing doing!
}
}