- Timestamp:
- May 4, 2012, 2:51:44 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/newlevel2012/src/modules/towerdefense/TowerDefenseCenterpoint.h
r9141 r9154 69 69 unsigned int getHeight(void) const 70 70 { return this->height_; } 71 72 /** 73 @brief How to convert to world coordinates, e.g. that 0,15 is not at -8,-8 but at -80,-80 (if scale would be 10) 74 */ 75 void setTileScale(unsigned int tileScale) 76 { this->tileScale_ = tileScale; } 77 78 unsigned int getTileScale(void) const 79 { return this->tileScale_; } 71 80 72 81 /** … … 85 94 unsigned int width_; 86 95 unsigned int height_; 96 unsigned int tileScale_; 97 87 98 std::string towerTemplate_; 88 99 };
Note: See TracChangeset
for help on using the changeset viewer.