mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-07 13:41:32 +00:00
75ec6bf244
This is a nasty commit, sorry, but 99% of the commit is interdependent.
15 lines
275 B
Objective-C
15 lines
275 B
Objective-C
#ifndef __CrosshairView_h
|
|
#define __CrosshairView_h
|
|
|
|
#include "gui/View.h"
|
|
#include "CrosshairCvar.h"
|
|
|
|
@interface CrosshairView : View
|
|
{
|
|
CrosshairCvar []crosshair;
|
|
}
|
|
-(id)initWithBounds:(Rect)aRect :(CrosshairCvar[])_crosshair;
|
|
-(void) next;
|
|
@end
|
|
|
|
#endif//__CrosshairView_h
|