quakeforge/tools/Forge/Bundles/MapEdit/DictList.h
Jeff Teunissen fb785c334b tactical whitespace bomb
Add return-type information to all methods, split up lines properly where
I could find them, and ran the whole thing through uncrustify. Looks purty
now. :)
2010-09-29 16:09:11 -04:00

16 lines
286 B
Objective-C

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