Changeset c991530 in network-game
- Timestamp:
- Jan 26, 2014, 10:04:27 PM (11 years ago)
- Branches:
- master
- Children:
- b29ff6b
- Parents:
- c51da03
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
client/Client/GameRender.cpp
rc51da03 rc991530 114 114 strClass = ""; 115 115 break; 116 default:117 strClass = "";118 break;119 116 } 120 117 al_draw_text(font, al_map_rgb(0, 0, 0), pos.x, pos.y-fontHeight/2, ALLEGRO_ALIGN_CENTRE, strClass.c_str()); -
common/Player.h
rc51da03 rc991530 75 75 bool isDead; 76 76 77 intplayerClass;77 PlayerClass playerClass; 78 78 int maxHealth; 79 79 int health; -
server/server.cpp
rc51da03 rc991530 289 289 validClass = true; 290 290 break; 291 default:291 case Player::CLASS_NONE: 292 292 validClass = false; 293 293 break;
Note:
See TracChangeset
for help on using the changeset viewer.