- Timestamp:
- Apr 21, 2012, 11:47:19 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/newlevel2012/src/modules/towerdefense/TowerDefenseCenterpoint.h
r9110 r9112 36 36 #define _TowerDefenseCenterpoint_H__ 37 37 38 #include " TowerDefense/TowerDefensePrereqs.h"38 #include "towerdefense/TowerDefensePrereqs.h" 39 39 40 40 #include <string> … … 92 92 93 93 /** 94 95 94 @brief Set the template for the towers. 95 @param template The template name to be applied to each tower. 96 */ 97 void setTowerTemplate(const std::string& templateName) 98 { this->towerTemplate_ = templateName; } 96 99 /** 97 * TODO; Replace stone with tower 98 @brief Set the template for the stones. 99 @param template The template name to be applied to each stone. 100 @brief Get the template for the towers. 101 @return Returns the template name to be applied to each tower. 100 102 */ 101 //void setStoneTemplate(const std::string& templateName) 102 // { this->stoneTemplate_ = templateName; } 103 /** 104 @brief Get the template for the stones. 105 @return Returns the template name to be applied to each stone. 106 */ 107 //const std::string& getStoneTemplate(void) const 108 // { return this->stoneTemplate_; } 103 const std::string& getTowerTemplate(void) const 104 { return this->towerTemplate_; } 109 105 110 106 … … 114 110 unsigned int width_; 115 111 unsigned int height_; 116 //std::string stoneTemplate_;112 std::string towerTemplate_; 117 113 118 114 };
Note: See TracChangeset
for help on using the changeset viewer.