upload "kind" alien swarm

This commit is contained in:
nillerusr
2023-10-03 17:23:56 +03:00
parent b7bd94c52e
commit 7d3c0d8b5a
4229 changed files with 462900 additions and 495155 deletions
+11 -1
View File
@@ -1,4 +1,4 @@
//========= Copyright Valve Corporation, All rights reserved. ============//
//========= Copyright © 1996-2005, Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
@@ -24,8 +24,13 @@ public:
DECLARE_SERVERCLASS();
ParticleSmokeGrenade();
virtual ~ParticleSmokeGrenade();
virtual void Spawn( void );
virtual int UpdateTransmitState( void );
void SetCreator(CBasePlayer *creator);
CBasePlayer* GetCreator();
public:
@@ -38,6 +43,7 @@ public:
// Set time to fade out relative to current time
void SetRelativeFadeTime(float startTime, float endTime);
void Think( void );
public:
@@ -50,6 +56,10 @@ public:
// When to fade in and out.
CNetworkVar( float, m_FadeStartTime );
CNetworkVar( float, m_FadeEndTime );
protected:
EHANDLE m_creatorPlayer;
};