mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-03-24 12:48:12 +05:00
9 lines
253 B
C++
9 lines
253 B
C++
#include "stdafx.h"
|
|
#include "Enemy.h"
|
|
|
|
EntitySelector *Enemy::ENEMY_SELECTOR = new Enemy::EnemyEntitySelector();
|
|
|
|
bool Enemy::EnemyEntitySelector::matches(shared_ptr<Entity> entity) const
|
|
{
|
|
return (entity != NULL) && entity->instanceof(eTYPE_ENEMY);
|
|
} |