mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
ef8b1821d2
That was a lot easier than I expected.
14 lines
224 B
Objective-C
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
|