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
+28
View File
@@ -0,0 +1,28 @@
#ifndef _INCLUDED_ENV_AMBIENT_LIGHT_H
#define _INCLUDED_ENV_AMBIENT_LIGHT_H
#include "spatialentity.h"
//------------------------------------------------------------------------------
// Purpose : Ambient light controller entity
//------------------------------------------------------------------------------
class CEnvAmbientLight : public CSpatialEntity
{
DECLARE_CLASS( CEnvAmbientLight, CSpatialEntity );
public:
DECLARE_SERVERCLASS();
DECLARE_DATADESC();
virtual void Spawn( void );
void InputSetColor(inputdata_t &inputdata);
void SetColor( const Vector &vecColor );
private:
color32 m_Color;
CNetworkVector( m_vecColor );
};
#endif // _INCLUDED_ENV_AMBIENT_LIGHT_H