mirror of
https://github.com/Patoke/LCERenewed.git
synced 2026-08-23 21:14:59 +00:00
feat: init
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
#include "stdafx.h"
|
||||
|
||||
#include "Team.h"
|
||||
|
||||
bool Team::isAlliedTo(Team *other)
|
||||
{
|
||||
if (other == NULL)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
if (this == other)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
Reference in New Issue
Block a user