1#include "stdafx.h" 2 3#include "Team.h" 4 5bool Team::isAlliedTo(Team *other) 6{ 7 if (other == NULL) 8 { 9 return false; 10 } 11 if (this == other) 12 { 13 return true; 14 } 15 return false; 16}