summaryrefslogtreecommitdiffstats
path: root/matchblox/menu/menu.h
blob: 656d2596dbe46e71c35790384737fed1957ab9f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef _CMENU_H
#define _CMENU_H

#ifdef __cplusplus
extern "C" {
#endif


void MenuNext(void);
void MenuInit(int f_iWinWidth, int f_iWinHeight);
void MenuRender(void);
void MenuRun(void);
void MenuMouseClick(int button, int state, int x, int y);
void MenuMouseMove(int x, int y);


#ifdef __cplusplus
}
#endif

#endif