Files
DrPerkyLegit-LCEServerTest/Minecraft.World/Enemy.cpp
2026-05-16 11:30:28 -04:00

9 lines
256 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 != nullptr) && entity->instanceof(eTYPE_ENEMY);
}