mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-05 20:41:06 +00:00
e11dbd7428
git-svn-id: https://svn.eduke32.com/eduke32@1352 1a8010ca-5511-0410-912e-c29ae57300e0
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__
|
|
|