smartcmd-MinecraftConsoles/Minecraft.World/Team.cpp

17 lines
180 B
C++
Raw Normal View History

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