Updates to reflect changes to DisplayMisoScene.
git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1309 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
@@ -1,8 +1,11 @@
|
||||
//
|
||||
// $Id: ScrollingScene.java,v 1.6 2002/04/27 04:57:37 mdb Exp $
|
||||
// $Id: ScrollingScene.java,v 1.7 2002/04/27 23:07:58 mdb Exp $
|
||||
|
||||
package com.threerings.miso.scene;
|
||||
|
||||
import java.awt.Point;
|
||||
|
||||
import java.util.Collections;
|
||||
import java.util.Iterator;
|
||||
import java.util.Random;
|
||||
|
||||
@@ -68,13 +71,19 @@ public class ScrollingScene implements DisplayMisoScene
|
||||
}
|
||||
|
||||
// documentation inherited from interface
|
||||
public ObjectTile getObjectTile (int x, int y)
|
||||
public Iterator getObjectTiles ()
|
||||
{
|
||||
return Collections.EMPTY_LIST.iterator();
|
||||
}
|
||||
|
||||
// documentation inherited from interface
|
||||
public Point getObjectCoords (ObjectTile tile)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// documentation inherited from interface
|
||||
public String getObjectAction (int column, int row)
|
||||
public String getObjectAction (ObjectTile tile)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user