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
+2 -2
View File
@@ -6,7 +6,7 @@ package com.threerings.ezgame {
*/
public class CardDeck
{
public function CardDeck (gameObj :GameObject, deckName :String = "deck")
public function CardDeck (gameObj :EZGame, deckName :String = "deck")
{
_gameObj = gameObj;
_deckName = deckName;
@@ -35,7 +35,7 @@ public class CardDeck
}
/** The game object. */
protected var _gameObj :GameObject;
protected var _gameObj :EZGame;
/** The name of our deck. */
protected var _deckName :String;