Further refactoring into client, data and server.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@3382 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2005-03-03 19:55:35 +00:00
parent dbbd8e955f
commit 924363a8a6
5 changed files with 10 additions and 8 deletions
@@ -19,7 +19,7 @@
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
package com.threerings.parlor.card.trick;
package com.threerings.parlor.card.trick.client;
import com.threerings.parlor.turn.client.TurnGameController;
@@ -19,11 +19,13 @@
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
package com.threerings.parlor.card.trick;
package com.threerings.parlor.card.trick.client;
import com.threerings.presents.dobj.AttributeChangedEvent;
import com.threerings.parlor.turn.client.TurnGameControllerDelegate;
import com.threerings.presents.dobj.AttributeChangedEvent;
import com.threerings.parlor.card.trick.data.TrickCardGameObject;
/**
* A card game controller delegate for trick-based card games, such as
@@ -19,7 +19,7 @@
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
package com.threerings.parlor.card.trick;
package com.threerings.parlor.card.trick.data;
import com.threerings.parlor.turn.data.TurnGameObject;
@@ -19,7 +19,7 @@
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
package com.threerings.parlor.card.trick;
package com.threerings.parlor.card.trick.server;
import com.threerings.parlor.turn.server.TurnGameManager;
@@ -19,14 +19,14 @@
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
package com.threerings.parlor.card.trick;
package com.threerings.parlor.card.trick.server;
import com.threerings.crowd.data.PlaceObject;
import com.threerings.parlor.game.server.GameManager;
import com.threerings.parlor.turn.server.TurnGameManagerDelegate;
import com.threerings.parlor.card.trick.data.TrickCardGameObject;
/**
* A card game manager delegate for trick-based card games, such as
* Spades and Hearts.