Changes in client/Client/GameRender.cpp [dfc81f0:c991530] in network-game
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
client/Client/GameRender.cpp
rdfc81f0 rc991530 2 2 3 3 #include <cmath> 4 #include <iostream>5 4 6 5 #include <allegro5/allegro_primitives.h> 7 6 8 7 #include "../../common/Common.h" 9 10 using namespace std;11 8 12 9 void GameRender::drawMap(WorldMap* gameMap) … … 100 97 else if (p->team == 1) 101 98 color = al_map_rgb(255, 0, 0); 102 else {103 color = al_map_rgb(0, 0, 0);104 cout << "Failed to determine player team when drawing player" << endl;105 }106 99 107 100 al_draw_filled_circle(pos.x, pos.y, 12, color);
Note:
See TracChangeset
for help on using the changeset viewer.