JacksEscape/render_util.h
Edgaru089 4f9ea0a09a Debug text & debug build options
use 'winedbg --gdb <file>' to start debugger
2024-03-05 14:19:31 +08:00

21 lines
284 B
C

#pragma once
#ifdef __cplusplus
extern "C" {
#endif
#define TEXTHEIGHT 18
// Draws text at the given on-screen position.
//
// unlike outtext(), this function takes consideration
// for newlines.
void render_DrawText(int x, int y, const char *str);
#ifdef __cplusplus
}
#endif