mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-07 05:30:31 +00:00
b336ba79f1
However, it still won't work (no gorm, commented code, ...). Borrow an old implementation of the Storage class until I figure out just what it's being used for.
17 lines
205 B
Objective-C
17 lines
205 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
|