Files
cafeberry/Minecraft.World/Team.cpp
T
2026-07-03 18:34:01 +01:00

17 lines
193 B
C++

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