summaryrefslogtreecommitdiffstats
path: root/matchblox/menu/menu.h
blob: b5e1d9f88cfd734d1f9c9d5a8f0b72dad2f5165c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#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 MenuMouseClick(int button, int state, int x, int y);
void MenuMouseMove(int x, int y);


#ifdef __cplusplus
}
#endif

#endif