raze-gles/source/build/include/osd.h

31 lines
451 B
C
Raw Normal View History

// On-screen display (ie. console)
// for the Build Engine
// by Jonathon Fowler (jf@jonof.id.au)
#ifndef osd_h_
#define osd_h_
2019-10-23 19:11:37 +00:00
#include <functional>
#include "compat.h"
#include "printf.h"
2020-04-11 22:04:02 +00:00
#include "c_dispatch.h"
2020-04-11 22:04:02 +00:00
#define OSDCMD_OK CCMD_OK
#define OSDCMD_SHOWHELP CCMD_SHOWHELP
2019-11-05 19:31:30 +00:00
// void OSD_Draw();
// executes buffered commands
2019-11-05 19:31:30 +00:00
void C_RunDelayedCommands();
inline void OSD_DispatchQueued(void)
{
C_RunDelayedCommands();
}
#endif // osd_h_