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.
28 lines
373 B
28 lines
373 B
8 years ago
|
//++ BulliT
|
||
|
|
||
|
#if !defined(__AG_WALLHACK_H__)
|
||
|
#define __AG_WALLHACK_H__
|
||
|
|
||
|
#if _MSC_VER > 1000
|
||
|
#pragma once
|
||
|
#endif // _MSC_VER > 1000
|
||
|
|
||
|
class AgWallhack
|
||
|
{
|
||
|
AgString m_sData;
|
||
|
|
||
|
public:
|
||
|
AgWallhack();
|
||
|
virtual ~AgWallhack();
|
||
|
|
||
|
void Init();
|
||
|
|
||
|
void SendToPlayer(CBasePlayer* pPlayer);
|
||
|
};
|
||
|
|
||
|
extern DLL_GLOBAL AgWallhack Wallhack;
|
||
|
|
||
|
#endif // !__AG_WALLHACK_H__
|
||
|
|
||
|
//-- Martin Webrant
|