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