mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-20 11:11:34 +00:00
11 lines
179 B
C
11 lines
179 B
C
|
|
||
|
#ifndef __GL_GLOW
|
||
|
#define __GL_GLOW
|
||
|
|
||
|
struct sector_t;
|
||
|
|
||
|
void gl_InitGlow(const char * lumpnm);
|
||
|
int gl_CheckSpriteGlow(sector_t *sec, int lightlevel, int x, int y, int z);
|
||
|
|
||
|
#endif
|