The great Game API re-org.

Moved everything onto sub-control objects.
Got rid of the Listener interfaces.
https://intranet.earth.threerings.net/metasoy/EZGame_API_Reorg

I'll go through and make the documentation nice next.


git-svn-id: svn+ssh://src.earth.threerings.net/vilya/trunk@535 c613c5cb-e716-0410-b11b-feb51c14d237
This commit is contained in:
Ray Greenwell
2007-12-21 23:57:02 +00:00
parent 8c27874128
commit d711f2ae97
25 changed files with 1346 additions and 1069 deletions
@@ -50,9 +50,9 @@ public class UserChatEvent extends EZEvent
/**
* Constructor.
*/
public function UserChatEvent (ezgame :EZGameControl, speaker :int, message :String)
public function UserChatEvent (gameCtrl :Object, speaker :int, message :String)
{
super(TYPE, ezgame);
super(TYPE, gameCtrl);
_speaker = speaker;
_message = message;
}
@@ -64,7 +64,7 @@ public class UserChatEvent extends EZEvent
override public function clone () :Event
{
return new UserChatEvent(_ezgame, _speaker, _message);
return new UserChatEvent(_gameCtrl, _speaker, _message);
}
/** Our implementation details. */