diff options
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp index 88c08ef..6c53a75 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -67,6 +67,9 @@ int main(int argc,char **argv){ **** GAMELOOP **** **************************/ + ui.init("ttf/VCR_OSD_MONO_1.001.ttf"); + ui.setFontSize(100); + irand(time(NULL)); entPlay = &player; entPlay->spawn(0, 0); @@ -176,6 +179,8 @@ void render(){ glRectf(build.loc.x, build.loc.y, build.loc.x + build.width, build.loc.y + build.height); ///BWAHHHHHHHHHHHH + ui.putText(0,0,"Hello"); + /************************** **** CLOSE THE LOOP **** **************************/ |