Files
narya/src/java/com/threerings/whirled/client/DefaultDisplaySceneFactory.java
T
Michael Bayne ae1052a371 Oh the vast sweeping changes, and they're not even close to complete, but
things compile and most things run so this is a good time to checkpoint.
Let me recall:

- Refactored the whole scene deal.
- Revamped the XML parser stuff (now uses Digester).
- Rethought the tile management.
- Started tile bundle stuff.
- Wrote some tests.
- Did a bit of Mike-ification.

Onward and moreward.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@621 542714f4-19e9-0310-aa3c-eee0fc999fb1
2001-11-18 04:09:23 +00:00

21 lines
551 B
Java

//
// $Id: DefaultDisplaySceneFactory.java,v 1.1 2001/11/18 04:09:23 mdb Exp $
package com.threerings.whirled.client;
import com.threerings.crowd.data.PlaceConfig;
import com.threerings.whirled.data.SceneModel;
/**
* The default display scene factory creates {@link DisplaySceneImpl}
* instances.
*/
public class DefaultDisplaySceneFactory implements DisplaySceneFactory
{
// documentation inherited
public DisplayScene createScene (SceneModel model, PlaceConfig config)
{
return new DisplaySceneImpl(model, config);
}
}