add source-sdk-2013

This commit is contained in:
nillerusr
2022-03-01 23:00:42 +03:00
parent 88b8830e8b
commit edc8d6c584
3288 changed files with 3734 additions and 1062458 deletions

View File

@@ -82,8 +82,8 @@ private:
enum
{
// NOTE: # of points max must be a power of two!
MAX_SPRITE_TRAIL_POINTS = 256,
MAX_SPRITE_TRAIL_MASK = MAX_SPRITE_TRAIL_POINTS - 1,
MAX_SPRITE_TRAIL_POINTS = 64,
MAX_SPRITE_TRAIL_MASK = 0x3F,
};
TrailPoint_t *GetTrailPoint( int n );
@@ -114,11 +114,6 @@ private:
string_t m_iszSpriteName;
bool m_bAnimate;
bool m_bDrawForMoveParent;
#if defined( CLIENT_DLL )
public:
void SetUpdateTime(float setTo){ m_flUpdateTime = setTo; }
#endif
};
#endif // SPRITETRAIL_H