mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-02-09 06:50:49 +00:00
16 lines
322 B
C
16 lines
322 B
C
#ifndef __osdcmds_h__
|
|
#define __osdcmds_h__
|
|
|
|
struct osdcmd_cheatsinfo {
|
|
int32_t cheatnum; // -1 = none, else = see DoCheats()
|
|
int32_t volume,level;
|
|
};
|
|
|
|
extern struct osdcmd_cheatsinfo osdcmd_cheatsinfo_stat;
|
|
|
|
int32_t registerosdcommands(void);
|
|
|
|
extern float r_ambientlight,r_ambientlightrecip;
|
|
|
|
#endif // __osdcmds_h__
|
|
|