mirror of
https://github.com/GabsPuNs/Project-Zenith-Main.git
synced 2026-05-21 18:24:34 +00:00
9 lines
256 B
C++
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);
|
|
} |