mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-06 20:17:13 +00:00
12 lines
184 B
C++
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;
|
|
}
|