Changeset c76134b in network-game for common/Player.cpp
- Timestamp:
- Jun 18, 2013, 11:16:21 PM (11 years ago)
- Branches:
- master
- Children:
- 66c4ec4
- Parents:
- 1d0ede1
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
common/Player.cpp
r1d0ede1 rc76134b 17 17 this->timeLastUpdated = 0; 18 18 this->timeAttackStarted = 0; 19 this->timeDied = 0; 19 20 this->isChasing = false; 20 21 this->isAttacking = false; 22 this->isDead = false; 21 23 22 24 this->playerClass = CLASS_NONE; … … 44 46 this->timeLastUpdated = p.timeLastUpdated; 45 47 this->timeAttackStarted = p.timeAttackStarted; 48 this->timeDied = p.timeDied; 46 49 this->isChasing = p.isChasing; 47 50 this->isAttacking = p.isAttacking; 51 this->isDead = p.isDead; 48 52 49 53 this->playerClass = p.playerClass; … … 69 73 this->timeLastUpdated = 0; 70 74 this->timeAttackStarted = 0; 75 this->timeDied = 0; 71 76 this->isChasing = false; 72 77 this->isAttacking = false; 78 this->isDead = false; 73 79 74 80 this->playerClass = CLASS_NONE;
Note:
See TracChangeset
for help on using the changeset viewer.