raze/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 21:11:37 +02:00
#include <functional>
#include "compat.h"
#include "printf.h"
2020-04-12 00:04:02 +02:00
#include "c_dispatch.h"
2020-04-12 00:04:02 +02:00
#define OSDCMD_OK CCMD_OK
#define OSDCMD_SHOWHELP CCMD_SHOWHELP
2019-11-05 20:31:30 +01:00
// void OSD_Draw();
// executes buffered commands
2019-11-05 20:31:30 +01:00
void C_RunDelayedCommands();
inline void OSD_DispatchQueued(void)
{
C_RunDelayedCommands();
}
#endif // osd_h_