Changeset 53643ca in network-game for common/Player.cpp
- Timestamp:
- Jul 19, 2014, 12:32:33 AM (10 years ago)
- Branches:
- master
- Children:
- 4c00935
- Parents:
- cdb0e98
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
common/Player.cpp
rcdb0e98 r53643ca 33 33 this->hasBlueFlag = false; 34 34 this->hasRedFlag = false; 35 36 this->level = 0; 37 this->experience = 0; 38 this->honor = 0; 39 this->wins = 0; 40 this->losses = 0; 35 41 36 42 this->currentGame = NULL; … … 66 72 this->hasRedFlag = p.hasRedFlag; 67 73 74 this->level = p.level; 75 this->experience = p.experience; 76 this->honor = p.honor; 77 this->wins = p.wins; 78 this->losses = p.losses; 79 68 80 this->currentGame = p.currentGame; 69 81 } … … 95 107 this->hasBlueFlag = false; 96 108 this->hasRedFlag = false; 109 110 this->level = 0; 111 this->experience = 0; 112 this->honor = 0; 113 this->wins = 0; 114 this->losses = 0; 97 115 98 116 this->currentGame = NULL;
Note:
See TracChangeset
for help on using the changeset viewer.