Create our game configurator directly rather than returning a class and

forcing the caller to instantiate it.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@3248 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2004-11-27 21:24:33 +00:00
parent 421ed5126e
commit d492d541b3
3 changed files with 13 additions and 15 deletions
@@ -1,5 +1,5 @@
//
// $Id: TestConfig.java,v 1.6 2004/08/27 02:21:02 mdb Exp $
// $Id$
//
// Narya library - tools for developing networked games
// Copyright (C) 2002-2004 Three Rings Design, Inc., All Rights Reserved
@@ -21,6 +21,7 @@
package com.threerings.parlor;
import com.threerings.parlor.client.GameConfigurator;
import com.threerings.parlor.game.GameConfig;
public class TestConfig extends GameConfig
@@ -28,7 +29,7 @@ public class TestConfig extends GameConfig
/** The foozle parameter. */
public int foozle;
public Class getConfiguratorClass ()
public GameConfigurator createConfigurator ()
{
return null;
}