mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 13:11:20 +00:00
0e5cd14829
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. :)
16 lines
227 B
Objective-C
16 lines
227 B
Objective-C
#ifndef TextureView_h
|
|
#define TextureView_h
|
|
|
|
#include <AppKit/AppKit.h>
|
|
|
|
@interface TextureView: NSView
|
|
{
|
|
id parent_i;
|
|
int deselectIndex;
|
|
}
|
|
|
|
- (id) setParent: (id)from;
|
|
- (id) deselect;
|
|
|
|
@end
|
|
#endif // TextureView_h
|