mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 13:11:20 +00:00
20 lines
312 B
C
20 lines
312 B
C
|
#ifndef __ruamoko_gui_Group_h
|
||
|
#define __ruamoko_gui_Group_h
|
||
|
|
||
|
#include "View.h"
|
||
|
|
||
|
@class Array;
|
||
|
|
||
|
@interface Group : View
|
||
|
{
|
||
|
Array views;
|
||
|
}
|
||
|
- (void) dealloc;
|
||
|
- (View) addView: (View)aView;
|
||
|
- (void) moveTo: (integer)x y:(integer)y;
|
||
|
- (void) setBasePos: (Point)pos;
|
||
|
- (void) draw;
|
||
|
@end
|
||
|
|
||
|
#endif//__ruamoko_gui_Group_h
|