2004-09-14 06:16:52 +00:00
|
|
|
#ifndef _INCLUDE_TR_H
|
|
|
|
#define _INCLUDE_TR_H
|
|
|
|
|
2004-09-15 18:40:18 +00:00
|
|
|
extern TraceResult *gfm_tr;
|
2005-03-25 09:30:45 +00:00
|
|
|
extern KeyValueData *g_fm_keyValueData; // JGHG: Yeah yeah I know this doesn't fit in here. Then again, neither does gaben.
|
2004-09-14 06:16:52 +00:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
TR_AllSolid,
|
|
|
|
TR_StartSolid,
|
|
|
|
TR_InOpen,
|
|
|
|
TR_InWater,
|
|
|
|
TR_flFraction,
|
|
|
|
TR_vecEndPos,
|
|
|
|
TR_flPlaneDist,
|
|
|
|
TR_vecPlaneNormal,
|
|
|
|
TR_pHit,
|
|
|
|
TR_iHitgroup,
|
|
|
|
};
|
|
|
|
|
2005-03-25 09:30:45 +00:00
|
|
|
enum KeyValue
|
|
|
|
{
|
|
|
|
KV_ClassName,
|
|
|
|
KV_KeyName,
|
|
|
|
KV_Value,
|
|
|
|
KV_fHandled
|
|
|
|
};
|
|
|
|
|
2004-09-14 23:39:22 +00:00
|
|
|
extern AMX_NATIVE_INFO tr_Natives[];
|
|
|
|
|
2004-09-14 06:16:52 +00:00
|
|
|
#endif //_INCLUDE_TR_H
|