00001
00002
00003
00004
00005
00006
00007
00008
00009
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028 #ifndef __MENUS_H__
00029 #define __MENUS_H__
00030
00032
00033
00034
00035
00036
00037 #define MI_FLAGS_ACTIVE 1
00038 #define MI_FLAGS_CLICKED 2
00039
00040 class ButtonStyle;
00041
00042
00043
00044
00045
00047 extern void DrawMenuButton(ButtonStyle *style, unsigned flags,
00048 int x, int y, const std::string &text);
00049
00050
00052 extern void PreMenuSetup(void);
00053
00055
00056 #endif // !__MENUS_H__