dfb0e3b03e
Excludes vendored C libs (zlib, Miles, DirectXMath, boost, Iggy).
8 lines
276 B
C++
8 lines
276 B
C++
#include "../Platform/stdafx.h"
|
|
#include "Enemy.h"
|
|
|
|
EntitySelector* Enemy::ENEMY_SELECTOR = new Enemy::EnemyEntitySelector();
|
|
|
|
bool Enemy::EnemyEntitySelector::matches(std::shared_ptr<Entity> entity) const {
|
|
return (entity != nullptr) && entity->instanceof(eTYPE_ENEMY);
|
|
} |