mirror of
https://github.com/DrPerkyLegit/LCEServerTest.git
synced 2026-06-03 01:14:34 +00:00
removed git history
This commit is contained in:
16
Minecraft.World/Team.cpp
Normal file
16
Minecraft.World/Team.cpp
Normal file
@@ -0,0 +1,16 @@
|
||||
#include "stdafx.h"
|
||||
|
||||
#include "Team.h"
|
||||
|
||||
bool Team::isAlliedTo(Team *other)
|
||||
{
|
||||
if (other == nullptr)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
if (this == other)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
Reference in New Issue
Block a user