More progress.
git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@3861 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
package com.threerings.presents.client {
|
||||
|
||||
import com.threerings.presents.dobj.DObjectManager;
|
||||
|
||||
public class InvocationDirector
|
||||
{
|
||||
public function init (omgr :DObjectManager, cloid :int, client :Client) :void
|
||||
{
|
||||
if (_clobj != null) {
|
||||
trace("Zoiks, client object around during invmgr init!");
|
||||
cleanup();
|
||||
}
|
||||
|
||||
_omgr = omgr;
|
||||
_client = client;
|
||||
|
||||
// TODO : lots more
|
||||
}
|
||||
|
||||
public function cleanup () :void
|
||||
{
|
||||
_clobj = null;
|
||||
|
||||
// TODO: lots more
|
||||
}
|
||||
|
||||
protected var _omgr :DObjectManager;
|
||||
|
||||
protected var _client :Client;
|
||||
|
||||
protected var _clobj :ClientObject;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user