Files
funnygame/game/shared/light.h
2026-04-12 14:52:33 +03:00

11 lines
128 B
C

#ifndef SHARED_LIGHT_H
#define SHARED_LIGHT_H
enum ELightFlags
{
k_ELight_Shadows = 0x1,
k_ELight_Radiance = 0x2,
};
#endif