mirror of
https://github.com/nillerusr/source-engine.git
synced 2026-08-07 17:29:36 +00:00
add source-sdk-2013
This commit is contained in:
@@ -99,8 +99,6 @@ public:
|
||||
// Tells the entity that it's about to be destroyed due to the client receiving
|
||||
// an uncompressed update that's caused it to destroy all entities & recreate them.
|
||||
virtual void SetDestroyedOnRecreateEntities( void ) = 0;
|
||||
|
||||
virtual void OnDataUnchangedInPVS() = 0;
|
||||
};
|
||||
|
||||
|
||||
|
||||
@@ -1072,7 +1072,7 @@ public:
|
||||
float *GetInitialFloatAttributePtrForWrite( int nAttribute, int nParticleNumber );
|
||||
fltx4 *GetInitialM128AttributePtrForWrite( int nAttribute, size_t *pStrideOut );
|
||||
|
||||
void Simulate( float dt, bool updateBboxOnly );
|
||||
void Simulate( float dt, bool updateBboxOnly = false );
|
||||
void SkipToTime( float t );
|
||||
|
||||
// the camera objetc may be compared for equality against control point objects
|
||||
|
||||
@@ -19,6 +19,10 @@
|
||||
#define tmBeginTimeSpanAt(...)
|
||||
#define tmEndTimeSpanAt(...)
|
||||
#define tmLeave(...)
|
||||
#define TM_MESSAGE(...)
|
||||
#define TM_ENTER(...)
|
||||
#define TM_LEAVE(...)
|
||||
#define TM_ZONE(...)
|
||||
#define TM_ZONE_DEFAULT(...)
|
||||
#define TM_ZONE_DEFAULT_PARAM(...)
|
||||
#define TelemetryTick(...)
|
||||
@@ -28,4 +32,6 @@
|
||||
#define tmTryLock(...)
|
||||
#define tmSetLockState(...)
|
||||
|
||||
typedef unsigned long long TmU64;
|
||||
|
||||
#endif // VPROF_TELEMETRY_H
|
||||
|
||||
@@ -194,6 +194,11 @@ public:
|
||||
GetStringInternal( pString, maxLenInChars );
|
||||
}
|
||||
|
||||
void GetString( char *pString, size_t maxLenInChars )
|
||||
{
|
||||
GetStringInternal( pString, maxLenInChars );
|
||||
}
|
||||
|
||||
void GetStringManualCharCount( char *pString, size_t maxLenInChars )
|
||||
{
|
||||
GetStringInternal( pString, maxLenInChars );
|
||||
|
||||
Reference in New Issue
Block a user