the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at main 16 lines 177 B view raw
1#include "stdafx.h" 2 3#include "Team.h" 4 5bool Team::isAlliedTo(Team *other) 6{ 7 if (other == NULL) 8 { 9 return false; 10 } 11 if (this == other) 12 { 13 return true; 14 } 15 return false; 16}