the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at master 9 lines 253 B view raw
1#include "stdafx.h" 2#include "Enemy.h" 3 4EntitySelector *Enemy::ENEMY_SELECTOR = new Enemy::EnemyEntitySelector(); 5 6bool Enemy::EnemyEntitySelector::matches(shared_ptr<Entity> entity) const 7{ 8 return (entity != NULL) && entity->instanceof(eTYPE_ENEMY); 9}