Changeset c9f6a1c in network-game for common/Game.cpp
- Timestamp:
- Dec 23, 2013, 8:05:55 PM (11 years ago)
- Branches:
- master
- Children:
- 3e44a59
- Parents:
- 8ce793b
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
common/Game.cpp
r8ce793b rc9f6a1c 73 73 } 74 74 75 int Game::getRedScore() {75 unsigned int Game::getRedScore() { 76 76 return this->redScore; 77 77 } 78 78 79 int Game::getBlueScore() {79 unsigned int Game::getBlueScore() { 80 80 return this->blueScore; 81 81 } … … 89 89 } 90 90 91 void Game::setRedScore( int score) {91 void Game::setRedScore(unsigned int score) { 92 92 this->redScore = score; 93 93 } 94 94 95 void Game::setBlueScore( int score) {95 void Game::setBlueScore(unsigned int score) { 96 96 this->blueScore = score; 97 97 }
Note:
See TracChangeset
for help on using the changeset viewer.