aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/Team.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Minecraft.World/Team.cpp')
-rw-r--r--Minecraft.World/Team.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/Minecraft.World/Team.cpp b/Minecraft.World/Team.cpp
new file mode 100644
index 00000000..f3f6e04e
--- /dev/null
+++ b/Minecraft.World/Team.cpp
@@ -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;
+}