Compare commits

...

2 commits

2 changed files with 3 additions and 2 deletions

View file

@ -1,5 +1,5 @@
#include "rendering/shader.h"
#include "rendering/texture3d.h"
#include "rendering/texture.h"
#include "timeutil.h"
#include <GL/glew.h>
#include <GL/gl.h>
@ -7,7 +7,7 @@
#include <string>
extern int viewportWidth, viewportHeight;
extern Texture3D* fontTexture;
extern Texture* fontTexture;
extern Shader* fontShader;
extern Shader* identityShader;

View file

@ -3,6 +3,7 @@
#include <qdialogbuttonbox.h>
#include <qnamespace.h>
#include <qplaintextedit.h>
#include <qfile.h>
class LicenseDialog : public QDialog {
public: