Added help information.

This commit is contained in:
2018-03-25 18:24:39 +02:00
parent 8e10be3ea9
commit 85435fef8d
4 changed files with 44 additions and 4 deletions

View File

@@ -25,6 +25,19 @@
#ifndef FPS
# define FPS 60.0f
#endif
#ifndef ACCEL
# define ACCEL 0.5f
#endif
#ifndef TURN_ACCEL
# define TURN_ACCEL (M_PI / FPS) // turn at pi radians / sec
#endif
#ifndef WINDOW_WIDTH
# define WINDOW_WIDTH 800
#endif
#ifndef WINDOW_HEIGHT
# define WINDOW_HEIGHT 600
#endif
#include <allegro5/allegro.h>