mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
9 lines
162 B
C
9 lines
162 B
C
#ifndef FONT_H
|
|
#define FONT_H
|
|
|
|
void PrintString(char *s,int x=0,int y=-1);
|
|
void PostString(char *_s,int _x,int _y,float _life=5.0);
|
|
void RenderStrings();
|
|
|
|
#endif
|