getDataTimestamp method

  1. @override
int? getDataTimestamp(
  1. Tile tile
)
override

Returns the creation timestamp of the map file.

@param tile not used, as all tiles will shared the same creation date. @return the creation timestamp inside the map file.

Implementation

@override
int? getDataTimestamp(Tile tile) {
  return this.timestamp;
}