Compilation fixes: these classes weren't referenced before and so weren't

compiling, but I'm playing around with building .swc libraries to cut
down on the build time of the client.


git-svn-id: svn+ssh://src.earth.threerings.net/vilya/trunk@46 c613c5cb-e716-0410-b11b-feb51c14d237
This commit is contained in:
Ray Greenwell
2006-08-22 20:48:47 +00:00
parent 5331407313
commit a90d7e655b
6 changed files with 19 additions and 17 deletions
@@ -41,7 +41,7 @@ public class DefaultFlexTableConfigurator extends TableConfigurator
* Create a TableConfigurator that allows for the specified configuration
* parameters.
*/
public function DefaultSwingTableConfigurator (
public function DefaultFlexTableConfigurator (
desiredPlayers :int, minPlayers :int = -1, maxPlayers :int = -1,
allowPrivate :Boolean = false)
{
@@ -72,7 +72,7 @@ public class DefaultFlexTableConfigurator extends TableConfigurator
}
// documentation inherited
protected function createConfigInterface () :void
override protected function createConfigInterface () :void
{
super.createConfigInterface();
@@ -226,7 +226,7 @@ public class TableDirector extends BasicDirector
}
// documentation inherited
protected function fetchServices (Client client) :void
override protected function fetchServices (client :Client) :void
{
// get a handle on our parlor services
_pservice = (client.requireService(ParlorService) as ParlorService);