Shader linking i guess

This commit is contained in:
2026-04-12 14:52:33 +03:00
parent 79ceac1005
commit 457b455042
38 changed files with 12534 additions and 114 deletions

27
game/server/light.h Normal file
View File

@@ -0,0 +1,27 @@
#ifndef LIGHT_H
#define LIGHT_H
#include "pointentity.h"
#include "../shared/light.h"
class CBaseLight: public CPointEntity
{
public:
DECLARE_CLASS(CBaseLight, CPointEntity)
DECLARE_DATADESC()
DECLARE_SERVERCLASS()
ColorAlpha m_vColor;
float m_fBrightness;
float m_fRadius;
int m_eLightFlags;
bool m_bIsEnabled;
};
class CPointLight: public CBaseLight
{
public:
DECLARE_CLASS(CPointLight, CBaseLight);
};
#endif