mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-03-04 00:11:12 +00:00
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
|