RSTile: setWallObject

This commit is contained in:
ImNoOSRS
2021-02-23 14:17:33 +01:00
parent d390a516dd
commit 8b12c2de3a
2 changed files with 11 additions and 0 deletions

View File

@@ -73,6 +73,13 @@ public interface Tile extends TileObject
*/ */
WallObject getWallObject(); WallObject getWallObject();
/**
* Sets the object on the wall layer of the tile.
*
* @param wallObject the ground object
*/
void setWallObject(WallObject wallObject);
/** /**
* Gets the scene paint of the tile. * Gets the scene paint of the tile.
* *

View File

@@ -35,6 +35,10 @@ public interface RSTile extends Tile
@Import("boundaryObject") @Import("boundaryObject")
@Override @Override
WallObject getWallObject(); WallObject getWallObject();
@Import("boundaryObject")
@Override
void setWallObject(WallObject object);
@Import("paint") @Import("paint")
@Override @Override