Altered persistent storage of scenes to be handled by the

SceneRepository.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@117 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Walter Korman
2001-07-24 16:10:19 +00:00
parent 3e5060c7c5
commit 05f3a6aa25
15 changed files with 283 additions and 411 deletions
@@ -0,0 +1,18 @@
//
// $Id: XMLSceneParser.java,v 1.1 2001/07/24 16:10:19 shaper Exp $
package com.threerings.miso.scene.xml;
import java.io.IOException;
import java.util.ArrayList;
import com.threerings.miso.scene.Scene;
public class XMLSceneParser
{
public Scene loadScene (String fname) throws IOException
{
// TBD
return null;
}
}