[Add] Added some pre-compiler directives and some files I will need soon.

This commit is contained in:
Rtch90 2012-04-05 22:12:35 +01:00
parent 6b23b97921
commit f6a54dd781
3 changed files with 5 additions and 1 deletions

View File

@ -6,6 +6,7 @@
#endif #endif
#include "GLWindow.h" #include "GLWindow.h"
#include "Game.h"
using std::string; using std::string;

View File

@ -2,6 +2,9 @@
#include <GL/glx.h> #include <GL/glx.h>
#include <glx/glxext.h> #include <glx/glxext.h>
#include <X11/Xlib.h>
#include <X11/Xutil.h>
#include <X11/extensions/xf86vmode.h>
#include <X11/keysym.h> #include <X11/keysym.h>
#include <ctime> #include <ctime>

View File

@ -2,7 +2,7 @@ CC = g++
CFLAGS = -ansi -Wall -g CFLAGS = -ansi -Wall -g
LDADD = -lGL -lGLU -lSDL -lSDL_image LDADD = -lGL -lGLU -lSDL -lSDL_image
objects = GLWindow.o \ objects = GLWindow.o Game.o \
.PHONY: default all clean .PHONY: default all clean