Started work on the 'crowd' package.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@3935 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2006-03-10 03:05:37 +00:00
parent 3f5aed3555
commit ca66f91ac7
31 changed files with 2650 additions and 57 deletions
+9 -3
View File
@@ -7,10 +7,13 @@ import flash.util.ByteArray;
import com.threerings.util.SimpleMap;
import com.threerings.io.streamers.ArrayStreamer;
import com.threerings.io.streamers.ByteyStreamer;
import com.threerings.io.streamers.ByteArrayStreamer;
import com.threerings.io.streamers.IntStreamer;
import com.threerings.io.streamers.FloatStreamer;
import com.threerings.io.streamers.IntegerStreamer;
import com.threerings.io.streamers.NumberStreamer;
import com.threerings.io.streamers.ObjectArrayStreamer;
import com.threerings.io.streamers.ShortStreamer;
import com.threerings.io.streamers.StringStreamer;
public class Streamer
@@ -125,10 +128,13 @@ public class Streamer
if (_streamers == null) {
_streamers = [
new StringStreamer(),
new IntStreamer(),
new NumberStreamer(),
new ObjectArrayStreamer(),
new ByteArrayStreamer()
new ByteArrayStreamer(),
new ByteStreamer(),
new ShortStreamer(),
new IntegerStreamer(),
new FloatStreamer()
];
}
}