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