Tile.placed

Indicates whether the tile has been placed in a world.

class Tile
final pure nothrow @property @safe @nogc
bool
placed
()

Examples

if(tile.placed) {
   assert(tile.world !is null);
}

Meta