mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-08-17 08:32:39 +00:00
12 lines
183 B
C++
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;
|
|
}
|