mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-13 07:57:58 +00:00
96d328de9b
For some files that had the Doom Source license attached but saw heavy external contributions over the years I added a special note to license all original ZDoom code under BSD.
12 lines
226 B
C
12 lines
226 B
C
#ifndef __STSTUFF_H__
|
|
#define __STSTUFF_H__
|
|
|
|
struct event_t;
|
|
|
|
bool ST_Responder(event_t* ev);
|
|
|
|
// [RH] Base blending values (for e.g. underwater)
|
|
extern int BaseBlendR, BaseBlendG, BaseBlendB;
|
|
extern float BaseBlendA;
|
|
|
|
#endif
|