quakeforge/tools/Forge/Bundles/MapEdit/DictList.h
Bill Currie b336ba79f1 Finally, everything does compile.
However, it still won't work (no gorm, commented code, ...).

Borrow an old implementation of the Storage class until I figure out just
what it's being used for.
2010-09-26 13:50:17 +09:00

16 lines
234 B
Objective-C

#ifndef DictList_h
#define DictList_h
#include <AppKit/AppKit.h>
@interface DictList:NSMutableArray
{
}
- initListFromFile:(FILE *)fp;
- writeListFile:(char *)filename;
- (id) findDictKeyword:(char *)key;
@end
#endif//DictList_h