Skip to content

Commit

Permalink
Addresses issue #272.
Browse files Browse the repository at this point in the history
  • Loading branch information
ldicker83 committed Mar 3, 2019
1 parent c238109 commit 1ba5206
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/Map/Map.h
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,13 @@ class Map
// 1D listing of all tiles on the associated map. See MapHeader data for height and width of map.
std::vector<Tile> tiles;

// Represents playable area of the map.
/**
* \brief Represents the visible areas of the map.
*
* \note Maps designated 'around the world' allow for continuous
* scrolling on the X axis and so will populate X1 with -1
* and X2 with \c INT_MAX.
*/
Rect clipRect;

// Listing of all tile set sources associated with the map.
Expand Down

0 comments on commit 1ba5206

Please sign in to comment.