quakeforge/ruamoko/include/gui/Group.h
Bill Currie e472364f51 call [self init] rather than [super init] (and variants where possible) to
ease derived class initialization (all allocation can be done in -init).
Objective-C rocks :)
2004-02-13 02:51:38 +00:00

19 lines
312 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;
- (void) moveTo: (integer)x y:(integer)y;
- (void) setBasePos: (Point)pos;
- (void) draw;
@end
#endif//__ruamoko_gui_Group_h