mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-05 20:41:06 +00:00
14 lines
272 B
C
14 lines
272 B
C
#ifndef __osdcmds_h__
|
|
#define __osdcmds_h__
|
|
|
|
struct osdcmd_cheatsinfo {
|
|
int cheatnum; // -1 = none, else = see cheats()
|
|
int volume,level;
|
|
};
|
|
|
|
extern struct osdcmd_cheatsinfo osdcmd_cheatsinfo_stat;
|
|
|
|
int registerosdcommands(void);
|
|
|
|
#endif // __osdcmds_h__
|
|
|