mirror of
https://github.com/ZDoom/qzdoom.git
synced 2025-02-09 09:10:51 +00:00
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
|