mirror of
https://github.com/nillerusr/source-engine.git
synced 2026-08-30 22:19:19 +00:00
upload "kind" alien swarm
This commit is contained in:
+10
-10
@@ -1,4 +1,4 @@
|
||||
//========= Copyright Valve Corporation, All rights reserved. ============//
|
||||
//========= Copyright © 1996-2005, Valve Corporation, All rights reserved. ============//
|
||||
//
|
||||
// Purpose: implements various common send proxies
|
||||
//
|
||||
@@ -20,39 +20,39 @@ void SendProxy_IntAddOne( const SendProp *pProp, const void *pStruct, const void
|
||||
void SendProxy_ShortAddOne( const SendProp *pProp, const void *pStruct, const void *pVarData, DVariant *pOut, int iElement, int objectID );
|
||||
|
||||
SendProp SendPropBool(
|
||||
const char *pVarName,
|
||||
char *pVarName,
|
||||
int offset,
|
||||
int sizeofVar );
|
||||
|
||||
SendProp SendPropEHandle(
|
||||
const char *pVarName,
|
||||
char *pVarName,
|
||||
int offset,
|
||||
int sizeofVar=SIZEOF_IGNORE,
|
||||
int flags = 0,
|
||||
int sizeofVar=SIZEOF_IGNORE,
|
||||
SendVarProxyFn proxyFn=SendProxy_EHandleToInt );
|
||||
|
||||
SendProp SendPropTime(
|
||||
const char *pVarName,
|
||||
char *pVarName,
|
||||
int offset,
|
||||
int sizeofVar=SIZEOF_IGNORE );
|
||||
|
||||
#if !defined( NO_ENTITY_PREDICTION )
|
||||
#if !defined( NO_ENTITY_PREDICTION ) && defined( USE_PREDICTABLEID )
|
||||
SendProp SendPropPredictableId(
|
||||
const char *pVarName,
|
||||
char *pVarName,
|
||||
int offset,
|
||||
int sizeofVar=SIZEOF_IGNORE );
|
||||
#endif
|
||||
|
||||
SendProp SendPropIntWithMinusOneFlag(
|
||||
const char *pVarName,
|
||||
char *pVarName,
|
||||
int offset,
|
||||
int bits,
|
||||
int sizeofVar=SIZEOF_IGNORE,
|
||||
int bits=-1,
|
||||
SendVarProxyFn proxyFn=SendProxy_IntAddOne );
|
||||
|
||||
|
||||
// Send a string_t as a string property.
|
||||
SendProp SendPropStringT( const char *pVarName, int offset, int sizeofVar );
|
||||
SendProp SendPropStringT( char *pVarName, int offset, int sizeofVar );
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// Purpose: Proxy that only sends data to team members
|
||||
|
||||
Reference in New Issue
Block a user