Cast our context and config references before calling super.init() so that

things are set up properly when createPlaceView() is called.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@409 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2001-10-09 17:20:39 +00:00
parent c9dfd6ef45
commit 1d64794349
@@ -1,5 +1,5 @@
// //
// $Id: GameController.java,v 1.3 2001/10/06 01:36:19 mdb Exp $ // $Id: GameController.java,v 1.4 2001/10/09 17:20:39 mdb Exp $
package com.threerings.parlor.client; package com.threerings.parlor.client;
@@ -44,11 +44,13 @@ public abstract class GameController
*/ */
public void init (PartyContext ctx, PlaceConfig config) public void init (PartyContext ctx, PlaceConfig config)
{ {
super.init(ctx, config); // cast our references before we call super.init() so that when
// super.init() calls createPlaceView(), we have our casted
// cast our references // references already in place
_ctx = (ParlorContext)ctx; _ctx = (ParlorContext)ctx;
_config = (GameConfig)config; _config = (GameConfig)config;
super.init(ctx, config);
} }
// documentation inherited // documentation inherited