Renamed "GameObject" to "EZGame". I'm not super happy with the name,

so not everything is converted. I'll revisit once I've decided what to do.


git-svn-id: svn+ssh://src.earth.threerings.net/vilya/trunk@49 c613c5cb-e716-0410-b11b-feb51c14d237
This commit is contained in:
Ray Greenwell
2006-08-23 17:37:26 +00:00
parent c1d05502e4
commit 35f6bc5b90
6 changed files with 31 additions and 29 deletions
@@ -47,6 +47,8 @@ public class EZGamePanel extends VBox
// from PlaceView
public function willEnterPlace (plobj :PlaceObject) :void
{
var thisPanel :DisplayObject = this;
// don't start notifying anything of the game until we've
// notified the game manager that we're in the game
// (done in GameController, and it uses callLater, so we do it twice!)
@@ -54,7 +56,7 @@ public class EZGamePanel extends VBox
_ctx.getClient().callLater(function () :void {
_ezObj = (plobj as EZGameObject);
notifyOfGame(this);
notifyOfGame(thisPanel);
});
});
}