dfb0e3b03e
Excludes vendored C libs (zlib, Miles, DirectXMath, boost, Iggy).
14 lines
217 B
C++
14 lines
217 B
C++
#include "../Platform/stdafx.h"
|
|
|
|
#include "Team.h"
|
|
|
|
bool Team::isAlliedTo(Team* other) {
|
|
if (other == nullptr) {
|
|
return false;
|
|
}
|
|
if (this == other) {
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|