Checkpoint.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@3864 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2006-02-19 23:35:22 +00:00
parent bb379347f0
commit 7a353e6722
8 changed files with 25 additions and 8 deletions
@@ -0,0 +1,15 @@
package com.threerings.presents.client {
import com.threerings.util.Name;
import com.threerings.presents.net.Credentials;
public class TestClient extends Client
{
public function TestClient ()
{
super(new Credentials(new Name("Ray")));
setServer("tasman.sea.earth.threerings.net", DEFAULT_SERVER_PORT);
logon();
}
}
}