mirror of
https://github.com/PrimeDecomp/echoes.git
synced 2026-03-31 14:23:06 -07:00
13 lines
236 B
C++
13 lines
236 B
C++
#ifndef _CVALIDENTITYPREDICATE
|
|
#define _CVALIDENTITYPREDICATE
|
|
|
|
class CEntity;
|
|
|
|
class CValidEntityPredicate {
|
|
public:
|
|
virtual ~CValidEntityPredicate();
|
|
virtual bool IsValid(const CEntity&) const;
|
|
};
|
|
|
|
#endif // _CVALIDENTITYPREDICATE
|