quakeforge/tools/Forge/Bundles/MapEdit/DictList.h
Bill Currie eba4402d8e Get map loading sort-of working.
Segfaults, but the Map class can now be instantiated.
2010-09-26 13:50:18 +09:00

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