#include "stdafx.h"
#include "Team.h"
bool Team::isAlliedTo(Team *other)
{
if (other == nullptr)
return false;
}
if (this == other)
return true;