summaryrefslogtreecommitdiffstats
path: root/matchblox/menu/menu.h
blob: 6a54332e45e5cc719faf484c779bb3f1d729b2c9 (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 MenuProcessMessage(void);
void MenuMouseClick(int button, int state, int x, int y);
void MenuMouseMove(int x, int y);

#ifdef __cplusplus
}
#endif

#endif