mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-07 13:41:32 +00:00
75ec6bf244
This is a nasty commit, sorry, but 99% of the commit is interdependent.
19 lines
321 B
Objective-C
19 lines
321 B
Objective-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;
|
|
- (id) addViews: (Array[])viewlist;
|
|
- (void) moveTo: (integer)x y:(integer)y;
|
|
- (void) draw;
|
|
@end
|
|
|
|
#endif//__ruamoko_gui_Group_h
|