aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/Team.cpp
blob: 7c3bde0c5a51afd98817a9d8b3bd1a69cd710c4f (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 == nullptr)
	{
		return false;
	}
	if (this == other)
	{
		return true;
	}
	return false;
}