quakeforge/ruamoko/include/gui/Group.h
Bill Currie 75ec6bf244 Clean out some unnecessary types from the progs engine and clean up the mess.
This is a nasty commit, sorry, but 99% of the commit is interdependent.
2011-01-10 12:25:31 +09:00

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