4jcraft/Minecraft.World/Scores/Team.cpp
2026-03-21 17:28:02 -05:00

14 lines
214 B
C++

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