quakeforge/tools/Forge/Bundles/MapEdit/DictList.h
Bill Currie 0e4259361c Get map loading sort-of working.
Segfaults, but the Map class can now be instantiated.
2010-11-28 15:31:34 +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