mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 13:11:20 +00:00
18 lines
402 B
Objective-C
18 lines
402 B
Objective-C
#ifndef __Frame_h
|
|
#define __Frame_h
|
|
#include "SchemeObject.h"
|
|
|
|
@interface Frame: SchemeObject
|
|
{
|
|
SchemeObject**array;
|
|
integer size;
|
|
Frame *link;
|
|
}
|
|
+ (id) newWithSize: (integer) sz link: (Frame *) l;
|
|
- (id) initWithSize: (integer) sz link: (Frame *) l;
|
|
- (void) set: (integer) index to: (SchemeObject *) o;
|
|
- (SchemeObject *) get: (integer) index;
|
|
- (Frame *) getLink;
|
|
@end
|
|
|
|
#endif //__FOO_h
|