Allow placement of the selected tile in scenes undergoing edit in the

scene editor application.  Added comments.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@53 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Walter Korman
2001-07-16 22:12:01 +00:00
parent 6806cfb6f7
commit ab18d9742e
10 changed files with 100 additions and 53 deletions
@@ -0,0 +1,18 @@
//
// $Id: SceneManagerImpl.java,v 1.1 2001/07/16 22:12:01 shaper Exp $
package com.threerings.cocktail.miso.scene;
public class SceneManagerImpl implements SceneManager
{
public Scene getScene (int sid)
{
// TBD
return null;
}
public String[] getLayerNames ()
{
return Scene.XLATE_LAYERS;
}
}