quakeforge/ruamoko/cl_menu/SubMenu.h
Bill Currie ef8b1821d2 Fix the bindings menus.
That was a lot easier than I expected.
2011-07-10 18:58:50 +09:00

14 lines
224 B
Objective-C

#ifndef __SubMenu_h
#define __SubMenu_h
#include "gui/View.h"
@interface SubMenu : View
{
View *title;
string menu_name;
}
-(id)initWithBounds:(Rect)aRect title:(View*)aTitle menu:(string)name;
@end
#endif//__SubMenu_h