From 022f77a08be529787a4881557dfc6565b896b1c5 Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Wed, 4 Oct 2006 21:10:22 +0000 Subject: [PATCH] We'll be needing a proper controller. git-svn-id: svn+ssh://src.earth.threerings.net/vilya/trunk@89 c613c5cb-e716-0410-b11b-feb51c14d237 --- src/java/com/threerings/ezgame/data/EZGameConfig.java | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/java/com/threerings/ezgame/data/EZGameConfig.java b/src/java/com/threerings/ezgame/data/EZGameConfig.java index 570a2962..a40bfa0b 100644 --- a/src/java/com/threerings/ezgame/data/EZGameConfig.java +++ b/src/java/com/threerings/ezgame/data/EZGameConfig.java @@ -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 () {