summaryrefslogtreecommitdiffstats
path: root/menu_demo/main.h
blob: 07419c0b538b0b29e6f106d88ef9551d452dc1ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef _CMAIN_H
#define _CMAIN_H

#define SCREEN_WIDTH  640
#define SCREEN_HEIGHT 480

void render_scene(void);
void process_normal_keys(unsigned char key, int x, int y);
void process_special_keys(int key, int x, int y);
void init_gl(void);
int main(int argc, char **argv);

#endif