Initial commit

This commit is contained in:
Jakub Skokan 2016-07-12 08:47:20 +02:00
commit d6c7f1ae87
95 changed files with 31975 additions and 0 deletions

24
src/menu.h Normal file
View file

@ -0,0 +1,24 @@
#ifndef _MENU_H_
#define _MENU_H_
class Menu {
public:
Menu();
static int init();
int show();
private:
void togglePlayer(int p);
void drawPlayer(int p);
void update();
int width, height;
float anim[4];
float startanim;
bool canstart;
static const float ANIMLEN;
static GLuint keys[4];
};
#endif