Decided to take the pain and refactor the parlor.game and parlor.turn

packages properly into client, data and server subpackages. This
eliminates a bunch of hackery I had to do to properly handle dead code
removal when building the Game Gardens client and games and it simplifies
things and sets a good example to follow the standard procedure as much as
possible.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@3381 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2005-03-03 19:36:34 +00:00
parent c2e2661e66
commit dbbd8e955f
66 changed files with 145 additions and 111 deletions
@@ -32,7 +32,8 @@ import com.threerings.crowd.util.CrowdContext;
import com.threerings.parlor.Log;
import com.threerings.parlor.client.*;
import com.threerings.parlor.game.*;
import com.threerings.parlor.game.client.*;
import com.threerings.parlor.game.data.*;
import com.threerings.parlor.util.ParlorContext;
public class TestClient extends com.threerings.crowd.client.TestClient
@@ -22,7 +22,7 @@
package com.threerings.parlor;
import com.threerings.parlor.client.GameConfigurator;
import com.threerings.parlor.game.GameConfig;
import com.threerings.parlor.game.data.GameConfig;
public class TestConfig extends GameConfig
{
@@ -1,5 +1,5 @@
//
// $Id: TestController.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
@@ -22,7 +22,7 @@
package com.threerings.parlor;
import com.threerings.crowd.client.PlaceView;
import com.threerings.parlor.game.GameController;
import com.threerings.parlor.game.client.GameController;
public class TestController extends GameController
{
@@ -1,5 +1,5 @@
//
// $Id: TestManager.java,v 1.4 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,7 +21,7 @@
package com.threerings.parlor;
import com.threerings.parlor.game.GameManager;
import com.threerings.parlor.game.server.GameManager;
public class TestManager extends GameManager
{