Added rumble on enemy hit, added try for teleport

This commit is contained in:
jancoow
2016-06-22 02:58:45 +02:00
parent c9e5be2573
commit 2230682a85
8 changed files with 42 additions and 2 deletions
+6 -1
View File
@@ -6,7 +6,8 @@
#define STB_IMAGE_IMPLEMENTATION
#include "stb_image.h"
#include <stdlib.h>
#include <time.h>
#include "Cursor.h"
void configureOpenGL(void);
@@ -15,11 +16,15 @@ CrystalPoint* app;
bool justMoved = false;
int main(int argc, char* argv[])
{
app = new CrystalPoint();
glutInit(&argc, argv);
srand (time(NULL));
configureOpenGL();
app->init();