mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 03:43:36 +00:00
14 lines
214 B
C++
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;
|
|
}
|