Portable Half-Life SDK. GoldSource and Xash3D. Crossplatform.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
#ifndef WHANDLE_H
|
|
|
|
#define WHANDLE_H
|
|
|
|
|
|
|
|
#ifndef CLIENT_DLL
|
|
|
|
|
|
|
|
class CBasePlayerItem;
|
|
|
|
|
|
|
|
class EHBasePlayerItem : public EHANDLE
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
operator CBasePlayerItem *()
|
|
|
|
{
|
|
|
|
return (CBasePlayerItem *)GET_PRIVATE( Get() );
|
|
|
|
}
|
|
|
|
CBasePlayerItem *operator ->()
|
|
|
|
{
|
|
|
|
return (CBasePlayerItem *)GET_PRIVATE( Get() );
|
|
|
|
}
|
|
|
|
template <class T>
|
|
|
|
operator T()
|
|
|
|
{
|
|
|
|
return (T)GET_PRIVATE( Get() );
|
|
|
|
}
|
|
|
|
template <class T>
|
|
|
|
T *operator = ( T *pEntity )
|
|
|
|
{
|
|
|
|
edict_t *e = NULL;
|
|
|
|
if( pEntity )
|
|
|
|
e = pEntity->edict();
|
|
|
|
return (T*)CBaseEntity::Instance( Set ( e ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
// handle = NULL correctly
|
|
|
|
int operator = ( int null1 )
|
|
|
|
{
|
|
|
|
//assert( !null1 );
|
|
|
|
Set(0);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool operator !=(EHBasePlayerItem &other)
|
|
|
|
{
|
|
|
|
return Get() != other.Get();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
#else
|
|
|
|
#define EHBasePlayerItem CBasePlayerItem*
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|