readd diverged version
This commit is contained in:
19
TitleMenu.cpp
Normal file
19
TitleMenu.cpp
Normal file
@@ -0,0 +1,19 @@
|
||||
#include "include/TitleMenu.h"
|
||||
#include <GL/glut.h>
|
||||
|
||||
void TitleMenu::renderGUI()
|
||||
{
|
||||
glTranslatef(.0F, .0F, .0F);
|
||||
|
||||
glColor3f(1.0F, .0F, .0F);
|
||||
|
||||
glBegin(GL_TRIANGLES);
|
||||
|
||||
glVertex2f(.0F, -500.0F);
|
||||
|
||||
glVertex2f(.0F, 500.0F);
|
||||
|
||||
glVertex2f(500.0F, .0F);
|
||||
|
||||
glEnd();
|
||||
}
|
||||
Reference in New Issue
Block a user