We'll be needing a proper controller.

git-svn-id: svn+ssh://src.earth.threerings.net/vilya/trunk@89 c613c5cb-e716-0410-b11b-feb51c14d237
This commit is contained in:
Michael Bayne
2006-10-04 21:10:22 +00:00
parent 51281a9d49
commit 022f77a08b
@@ -5,10 +5,14 @@ package com.threerings.ezgame.data;
import com.threerings.util.MessageBundle;
import com.threerings.crowd.client.PlaceController;
import com.threerings.parlor.game.client.GameConfigurator;
import com.threerings.parlor.game.data.GameConfig;
import com.threerings.parlor.game.data.PartyGameConfig;
import com.threerings.ezgame.client.EZGameController;
/**
* A game config for a simple multiplayer game.
*/
@@ -39,6 +43,12 @@ public class EZGameConfig extends GameConfig
return MessageBundle.taint(configData);
}
@Override // from PlaceConfig
public PlaceController createController ()
{
return new EZGameController();
}
// from abstract PlaceConfig
public String getManagerClassName ()
{