heretic/Heretic Source/VGAVIEW.H

25 lines
374 B
C++
Raw Permalink Normal View History

2008-09-04 00:00:00 +00:00
#import <appkit/appkit.h>
#import "DoomDef.h"
// a few globals
extern byte *bytebuffer;
@interface VGAView:View
{
id game;
int nextpalette[256]; // color lookup table
int *nextimage; // palette expanded and scaled
unsigned scale;
NXWindowDepth depth;
}
- updateView;
- (unsigned)scale;
- setPalette:(byte *)pal;
- setScale:(int)newscale;
@end