4jcraft/targets/minecraft/world/scores/Team.cpp
2026-04-07 09:50:21 +02:00

12 lines
183 B
C++

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