quakeforge/tools/Forge/Bundles/MapEdit/DictList.h
Jeff Teunissen 0e5cd14829 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-11-28 15:31:38 +09: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