Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //=========== Copyright © 1990-2010, HL-SDK, All rights reserved. ===========//
- //
- // Purpose: Entity Filtering
- // 05/25/2010 HL-SDK -- Started log
- //
- //===========================================================================//
- #pragma once
- namespace Zeus
- {
- namespace Entity
- {
- enum EntityFilterType_e
- {
- ENT_ALL,
- ENT_PLAYER,
- ENT_REFLECTABLE,
- ENT_ITEM,
- ENT_BUILDING
- };
- class CEntityFilter
- {
- public:
- CEntityFilter(EntityFilterType_e entType);
- ~CEntityFilter();
- void* First();
- void* Next();
- private:
- EntityFilterType_e m_entType;
- int m_curIndex;
- };
- }
- }
Add Comment
Please, Sign In to add comment