Build the tests along with everything else. No longer will they languish
in obscurity. Fixed a couple of out of date bits in the process. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@3615 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
@@ -45,9 +45,11 @@ import com.threerings.jme.JmeApp;
|
||||
public class JabberApp extends JmeApp
|
||||
{
|
||||
// documentation inherited
|
||||
public void init ()
|
||||
public boolean init ()
|
||||
{
|
||||
super.init();
|
||||
if (!super.init()) {
|
||||
return false;
|
||||
}
|
||||
|
||||
// initialize our client instance
|
||||
_client = new JabberClient();
|
||||
@@ -81,6 +83,8 @@ public class JabberApp extends JmeApp
|
||||
|
||||
// speed up key input
|
||||
_input.setKeySpeed(100f);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
public void run (String server, int port, String username, String password)
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
|
||||
package com.threerings.parlor;
|
||||
|
||||
import com.threerings.parlor.client.GameConfigurator;
|
||||
import com.threerings.parlor.game.client.GameConfigurator;
|
||||
import com.threerings.parlor.game.data.GameConfig;
|
||||
|
||||
public class TestConfig extends GameConfig
|
||||
|
||||
Reference in New Issue
Block a user