mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-07 13:41:32 +00:00
eba4402d8e
Segfaults, but the Map class can now be instantiated.
16 lines
259 B
Objective-C
16 lines
259 B
Objective-C
#ifndef DictList_h
|
|
#define DictList_h
|
|
|
|
#include <AppKit/AppKit.h>
|
|
|
|
@interface DictList:NSMutableArray
|
|
{
|
|
NSMutableArray *array;
|
|
}
|
|
|
|
-initListFromFile:(FILE *) fp;
|
|
-writeListFile:(char *) filename;
|
|
-(id) findDictKeyword:(char *) key;
|
|
|
|
@end
|
|
#endif // DictList_h
|