mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 23:32:09 +00:00
15 lines
224 B
C
15 lines
224 B
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
|