Changes in / [f15d6a9:b1ce08c] in network-game


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • client/Client/GameRender.cpp

    rf15d6a9 rb1ce08c  
    22
    33#include <cmath>
     4#include <iostream>
    45
    56#include <allegro5/allegro_primitives.h>
    67
    78#include "../../common/Common.h"
     9
     10using namespace std;
    811
    912void GameRender::drawMap(WorldMap* gameMap)
     
    97100      else if (p->team == 1)
    98101         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      }
    99106     
    100107      al_draw_filled_circle(pos.x, pos.y, 12, color);
Note: See TracChangeset for help on using the changeset viewer.