Files
XPlaneConnectCSP/xpcPlugin/xpcDrawing.h
Jason Watkins 453ea65619 Added plugin support for drawing messages to screen.
- Either a single string will be drawn to screen, or nothing will be drawn.
 - Intelligently registers and unregisters drawing callback to minimize overhead when no message is being displayed.
 - Currently does not support newline characters (\r or \n). Newlines will cause text to be drawn overlapped.
2015-04-07 15:33:38 -07:00

8 lines
120 B
C

#ifndef xpcDrawing_h
#define xpcDrawing_h
void XPCClearMessage();
void XPCSetMessage(int x, int y, char* msg);
#endif