Files
MCLEServer/Minecraft.World/Team.cpp
T
2026-05-08 05:15:08 -07:00

17 lines
180 B
C++

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