4jcraft/targets/minecraft/world/scores/Team.cpp
2026-04-01 13:27:58 -05:00

12 lines
184 B
C++

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