mirror of https://github.com/r4sas/ExtraMirror
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.
16 lines
584 B
16 lines
584 B
8 years ago
|
#pragma once
|
||
|
|
||
|
#include "Main.h"
|
||
|
|
||
|
int ResetHUD( const char *pszName , int iSize , void *pbuf );
|
||
|
int SetFOV( const char *pszName , int iSize , void *pbuf );
|
||
|
int TeamInfo( const char *pszName , int iSize , void *pbuf );
|
||
|
int NVGToggle( const char *pszName , int iSize , void *pbuf );
|
||
|
int CurWeapon( const char *pszName , int iSize , void *pbuf );
|
||
|
int DeathMsg( const char *pszName , int iSize , void *pbuf );
|
||
|
|
||
|
extern pfnUserMsgHook pResetHUD;
|
||
|
extern pfnUserMsgHook pSetFOV;
|
||
|
extern pfnUserMsgHook pTeamInfo;
|
||
|
extern pfnUserMsgHook pCurWeapon;
|
||
|
extern pfnUserMsgHook pDeathMsg;
|