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
@@ -1,8 +1,10 @@
//
// $Id: SceneView.java,v 1.2 2001/07/16 00:45:06 shaper Exp $
// $Id: SceneView.java,v 1.3 2001/07/16 22:12:01 shaper Exp $
package com.threerings.cocktail.miso.scene;
import com.threerings.cocktail.miso.tile.Tile;
import java.awt.Component;
import java.awt.Graphics;
@@ -27,9 +29,14 @@ public interface SceneView
* Set the scene that we're rendering.
*/
public void setScene (Scene scene);
/**
* Set the target component to which we're rendering.
*/
public void setTarget (Component target);
/**
* Set the tile at the specified location and layer in the scene.
*/
public void setTile (int x, int y, int lnum, Tile tile);
}