mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-01 05:21:02 +00:00
032f16d1b3
Not enough, but covers Object->NSObject and header file protection.
15 lines
177 B
Objective-C
15 lines
177 B
Objective-C
#ifndef TextureView_h
|
|
#define TextureView_h
|
|
|
|
@interface TextureView:NSView
|
|
{
|
|
id parent_i;
|
|
int deselectIndex;
|
|
}
|
|
|
|
- setParent:(id)from;
|
|
- deselect;
|
|
|
|
@end
|
|
|
|
#endif//TextureView_h
|