Rogue: Savage Rats, a retro-themed dungeon crawler
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
rogue-savage-rats/src/mightypork/rogue/world/tile/TileData.java

22 lines
365 B

package mightypork.rogue.world.tile;
import java.util.Stack;
import mightypork.rogue.world.item.Item;
/**
* Tile data object.
*
* @author MightyPork
*/
public abstract class TileData {
/** Items dropped onto this tile */
public final Stack<Item> items = new Stack<>();
/** Whether the tile is occupied by an entity */
public boolean occupied;
}