Changeset 7695
- Timestamp:
- Dec 1, 2010, 11:51:16 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/lastmanstanding/src/orxonox/gametypes/LastTeamStanding.cc
r7693 r7695 53 53 this->punishDamageRate=0.4f; 54 54 this->setHUDTemplate("LastTeamStandingHUD"); 55 this->eachTeamsPlayers = new eachTeamsPlayers[teams_];55 this->eachTeamsPlayers = new int[teams_]; 56 56 } 57 57 58 58 void LastTeamStanding::~LastTeamStanding() 59 59 { 60 delete this->eachTeamsPlayers;60 delete[] this->eachTeamsPlayers; 61 61 } 62 62
Note: See TracChangeset
for help on using the changeset viewer.